Property | Type | Description | |
---|---|---|---|
Col1 | System.Vector3 | ||
Col2 | System.Vector3 | ||
Col3 | System.Vector3 |
Method | Description | |
---|---|---|
Mat33 ( System.Vector3 c1, System.Vector3 c2, System.Vector3 c3 ) : System |
Construct this matrix using columns.
|
|
SetZero ( ) : void |
Set this matrix to all zeros.
|
|
Solve22 ( System.Vector2 b ) : System.Vector2 |
Solve A * x = b, where b is a column vector. This is more efficient than computing the inverse in one-shot cases. Solve only the upper 2-by-2 matrix equation.
|
|
Solve33 ( System.Vector3 b ) : System.Vector3 |
Solve A * x = b, where b is a column vector. This is more efficient than computing the inverse in one-shot cases.
|
public Mat33 ( System.Vector3 c1, System.Vector3 c2, System.Vector3 c3 ) : System | ||
c1 | System.Vector3 | |
c2 | System.Vector3 | |
c3 | System.Vector3 | |
return | System |
public Solve22 ( System.Vector2 b ) : System.Vector2 | ||
b | System.Vector2 | |
return | System.Vector2 |
public Solve33 ( System.Vector3 b ) : System.Vector3 | ||
b | System.Vector3 | |
return | System.Vector3 |