00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef freecloth_geom_geMatrix3_h
00020 #define freecloth_geom_geMatrix3_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 class GePoint;
00033
00034
00035
00036
00037
00038
00039 class GeMatrix3
00040 {
00041 public:
00042
00043
00044
00045 static GeMatrix3 colMajor( const Float data[ 9 ] );
00046
00047 static GeMatrix3 rowMajor( const Float data[ 9 ] );
00048
00049
00050 static GeMatrix3 scaling( Float sx, Float sy, Float sz );
00051
00052
00053 static GeMatrix3 rotation( const GeVector& axis, Float theta );
00054
00055 static GeMatrix3 outerProduct( const GeVector& a, const GeVector& b );
00056
00057
00058
00059 GeMatrix3();
00060 GeMatrix3(
00061 Float entry00, Float entry01, Float entry02,
00062 Float entry10, Float entry11, Float entry12,
00063 Float entry20, Float entry21, Float entry22
00064 );
00065
00066
00067
00068 Float operator()( UInt32 row, UInt32 col ) const;
00069 Float& operator()( UInt32 row, UInt32 col );
00070 GeMatrix3& operator*=( const GeMatrix3& );
00071 GeMatrix3& operator*=( Float );
00072 GeMatrix3& operator+=( const GeMatrix3& );
00073 GeMatrix3& operator-=( const GeMatrix3& );
00074 GeMatrix3 operator*( const GeMatrix3& ) const;
00075
00076 GeVector operator*( const GeVector& ) const;
00077 GePoint operator*( const GePoint& ) const;
00078
00079 GeMatrix3 operator*( Float ) const;
00080 GeMatrix3 operator+( const GeMatrix3& ) const;
00081 GeMatrix3 operator-( const GeMatrix3& ) const;
00082 bool operator==( const GeMatrix3& ) const;
00083 bool operator!=( const GeMatrix3& ) const;
00084
00085
00086 Float getTrace() const;
00087
00088 Float infinityNorm() const;
00089
00090 const Float* asColMajor() const;
00091 GeMatrix3 getTranspose() const;
00092 GeMatrix3 getInverse() const;
00093
00094
00095 static const GeMatrix3 ZERO;
00096 static const GeMatrix3 IDENTITY;
00097
00098 private:
00099
00100
00101
00102 Float _data[ 9 ];
00103 };
00104
00105
00106
00107
00108
00109
00110
00111 std::ostream& operator<<( std::ostream&, const GeMatrix3& );
00112
00113 GeMatrix3 operator*( Float, const GeMatrix3& );
00114
00115 GeVector operator*( const GeVector&, const GeMatrix3& );
00116
00117 FREECLOTH_NAMESPACE_END
00118
00119 #include <freecloth/geom/geMatrix3.inline.h>
00120
00121 #endif