00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef freecloth_geom_gePoint_h
00020 #define freecloth_geom_gePoint_h
00021
00022 #ifndef freecloth_geom_package_h
00023 #include <freecloth/geom/package.h>
00024 #endif
00025
00026 FREECLOTH_NAMESPACE_START
00027
00028
00029
00030
00031 class GeVector;
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 class GePoint
00042 {
00043 public:
00044
00045
00046
00047
00048
00049
00050 class CompX {
00051 public:
00052 CompX() { }
00053 inline bool operator() ( const GePoint& a, const GePoint& b ) const
00054 { return a._x < b._x; }
00055 };
00056
00057 class CompY {
00058 public:
00059 CompY() { }
00060 inline bool operator() ( const GePoint& a, const GePoint& b ) const
00061 { return a._y < b._y; }
00062 };
00063
00064 class CompZ {
00065 public:
00066 CompZ() { }
00067 inline bool operator() ( const GePoint& a, const GePoint& b ) const
00068 { return a._z < b._z; }
00069 };
00070
00071
00072
00073 GePoint();
00074 GePoint( Float x, Float y, Float z );
00075
00076 GePoint( const GePoint& a, const GePoint& b, Float fracA );
00077
00078
00079
00080 GePoint(
00081 const GePoint& a, const GePoint& b, const GePoint& c,
00082 Float fracA, Float fracB
00083 );
00084
00085
00086
00087 GePoint& operator+=( const GeVector& );
00088 GePoint& operator-=( const GeVector& );
00089 GePoint operator+( const GeVector& ) const;
00090 GePoint operator-( const GeVector& ) const;
00091 GeVector operator-( const GePoint& ) const;
00092 bool operator==( const GePoint& ) const;
00093 bool operator!=( const GePoint& ) const;
00094 Float operator[]( UInt32 ) const;
00095 Float& operator[]( UInt32 );
00096
00097
00098
00099 static const CompX _compX;
00100 static const CompY _compY;
00101 static const CompZ _compZ;
00102
00103 static const GePoint NIL;
00104 static const GePoint ZERO;
00105
00106
00107
00108 Float _x,_y,_z;
00109 };
00110
00111
00112
00113
00114
00115 std::ostream& operator<<( std::ostream&, const GePoint& );
00116
00117 FREECLOTH_NAMESPACE_END
00118
00119 #include <freecloth/geom/gePoint.inline.h>
00120
00121 #endif