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 static GeMatrix3 outerProduct( const GeVector& a, const GeVector& b );
00053
00054
00055
00056 GeMatrix3();
00057 GeMatrix3(
00058 Float entry00, Float entry01, Float entry02,
00059 Float entry10, Float entry11, Float entry12,
00060 Float entry20, Float entry21, Float entry22
00061 );
00062
00063
00064
00065 Float operator()( UInt32 row, UInt32 col ) const;
00066 Float& operator()( UInt32 row, UInt32 col );
00067 GeMatrix3& operator*=( const GeMatrix3& );
00068 GeMatrix3& operator*=( Float );
00069 GeMatrix3& operator+=( const GeMatrix3& );
00070 GeMatrix3& operator-=( const GeMatrix3& );
00071 GeMatrix3 operator*( const GeMatrix3& ) const;
00072
00073 GeVector operator*( const GeVector& ) const;
00074 GePoint operator*( const GePoint& ) const;
00075
00076 GeMatrix3 operator*( Float ) const;
00077 GeMatrix3 operator+( const GeMatrix3& ) const;
00078 GeMatrix3 operator-( const GeMatrix3& ) const;
00079 bool operator==( const GeMatrix3& ) const;
00080 bool operator!=( const GeMatrix3& ) const;
00081
00082
00083 Float getTrace() const;
00084
00085 Float infinityNorm() const;
00086
00087 const Float* asColMajor() const;
00088 GeMatrix3 getTranspose() const;
00089 GeMatrix3 getInverse() const;
00090
00091
00092 static const GeMatrix3 ZERO;
00093 static const GeMatrix3 IDENTITY;
00094
00095 private:
00096
00097
00098
00099 Float _data[ 9 ];
00100 };
00101
00102
00103
00104
00105
00106
00107
00108 std::ostream& operator<<( std::ostream&, const GeMatrix3& );
00109
00110 GeMatrix3 operator*( Float, const GeMatrix3& );
00111
00112 GeVector operator*( const GeVector&, const GeMatrix3& );
00113
00114 FREECLOTH_NAMESPACE_END
00115
00116 #include <freecloth/geom/geMatrix3.inline.h>
00117
00118 #endif