Méthode |
Description |
|
Equals ( object obj ) : bool |
|
|
GetHashCode ( ) : int |
|
|
GetInverse22 ( Mat33 m ) : void |
|
|
GetSymInverse33 ( Mat33 m ) : void |
|
|
Mat33 ( ) : System |
|
|
Mat33 ( Vec3 argCol1, Vec3 argCol2, Vec3 argCol3 ) : System |
|
|
Mul ( Mat33 a, Vec3 v ) : Vec3 |
|
|
Mul22 ( Mat33 a, Vec2 v ) : Vec2 |
|
|
Mul22ToOut ( Mat33 a, Vec2 v, Vec2 result ) : void |
|
|
Mul22ToOutUnsafe ( Mat33 a, Vec2 v, Vec2 result ) : void |
|
|
MulToOut ( Mat33 a, Vec3 v, Vec3 result ) : void |
|
|
MulToOutUnsafe ( Mat33 a, Vec3 v, Vec3 result ) : void |
|
|
SetZero ( ) : void |
|
|
Solve22 ( Vec2 b ) : Vec2 |
Solve A * x = b, where b is a column vector. This is more efficient than computing the inverse in one-shot cases. |
|
Solve22ToOut ( Vec2 b, Vec2 result ) : void |
Solve A * x = b, where b is a column vector. This is more efficient than computing the inverse in one-shot cases. |
|
Solve33 ( Vec3 b ) : Vec3 |
Solve A * x = b, where b is a column vector. This is more efficient than computing the inverse in one-shot cases. |
|
Solve33ToOut ( Vec3 b, Vec3 result ) : void |
Solve A * x = b, where b is a column vector. This is more efficient than computing the inverse in one-shot cases. |
|