Horus Doc || C++ Reference || Class Overview   Pixels   Images   Detector   Geometry   Registry || Doxygen's quick Index  

HxPointZ Class Reference

Definition of a point in Z3 space using integer coordinates. More...

#include <HxPointZ.h>

Inheritance diagram for HxPointZ::

HxVec3Int List of all members.

Public Methods

 HxPointZ (int x=0, int y=0, int z=0)
 Constructor. More...

 HxPointZ (const HxVec3Int &rhs)
 Constructor. More...

 HxPointZ (const HxVec3Double &rhs)
 Constructor. More...


Detailed Description

Definition of a point in Z3 space using integer coordinates.

HxPointZ is used primarily to specify the position of a pixel in an image.


Constructor & Destructor Documentation

HxPointZ::HxPointZ int    x = 0,
int    y = 0,
int    z = 0
[inline]
 

Constructor.

00034                                       : HxVec3Int(x, y, z)
00035 {
00036 }

HxPointZ::HxPointZ const HxVec3Int   rhs [inline]
 

Constructor.

00040     : HxVec3Int(rhs.x(), rhs.y(), rhs.z())
00041 {
00042 }

HxPointZ::HxPointZ const HxVec3Double   rhs [inline]
 

Constructor.

00046     : HxVec3Int(rhs.x()+0.5, rhs.y()+0.5, rhs.z()+0.5)
00047 {
00048 }


The documentation for this class was generated from the following file:
Generated on Mon Jan 27 15:49:09 2003 for C++Reference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001