00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef freecloth_geom_geVector_h
00020 #define freecloth_geom_geVector_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 GePoint;
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 class GeVector {
00042
00043 public:
00044
00045
00046
00047
00048 static const GeVector& axis( UInt32 idx );
00049
00050
00051 GeVector();
00052 GeVector( Float x, Float y, Float z );
00053
00054 GeVector( const GePoint& p1, const GePoint& p2 );
00055
00056
00057
00058 GeVector& operator+=( const GeVector& );
00059 GeVector& operator-=( const GeVector& );
00060 GeVector& operator+=( Float );
00061 GeVector& operator-=( Float );
00062 GeVector& operator*=( Float );
00063 GeVector& operator/=( Float );
00064 GeVector operator-() const;
00065 GeVector operator+( const GeVector& ) const;
00066 GeVector operator-( const GeVector& ) const;
00067 GeVector operator+( Float ) const;
00068 GeVector operator-( Float ) const;
00069 GeVector operator*( Float ) const;
00070 GeVector operator/( Float ) const;
00071 bool operator==( const GeVector& ) const;
00072 bool operator!=( const GeVector& ) const;
00073 Float operator[]( UInt32 ) const;
00074 Float& operator[]( UInt32 );
00075
00076
00077 Float dot( const GeVector& ) const;
00078
00079 GeVector cross( const GeVector& ) const;
00080
00081
00082 Float length() const;
00083 Float squaredLength() const;
00084
00085 Float infinityNorm() const;
00086
00087 bool isUnit() const;
00088 GeVector getUnit() const;
00089
00090
00091 Float getAngle( const GeVector& ) const;
00092
00093
00094 static const GeVector ZERO;
00095 static const GeVector X,Y,Z;
00096
00097
00098 Float _x,_y,_z;
00099 };
00100
00101
00102
00103
00104
00105 std::ostream& operator<<( std::ostream&, const GeVector& );
00106 GeVector operator*( Float, GeVector const& );
00107
00108 FREECLOTH_NAMESPACE_END
00109
00110 #include <freecloth/geom/geVector.inline.h>
00111
00112 #endif