C# Class RekdEngine.UtilMath.Matrix2x2

Datei anzeigen Open project: Naronco/Rekd-Sharp

Public Properties

Property Type Description
M00 float
M10 float

Public Methods

Method Description
Inverse ( ) : Matrix2x2
Matrix2x2 ( float M00 = 1, float M01, float M10, float M11 = 1 ) : System
Set ( float M00, float M01, float M10, float M11 ) : Matrix2x2
SetIdentity ( ) : Matrix2x2
SetZero ( ) : Matrix2x2
Solve ( Vector2f b ) : Vector2f
operator ( ) : Vector2f
this ( int x, int y ) : float

Method Details

Inverse() public method

public Inverse ( ) : Matrix2x2
return Matrix2x2

Matrix2x2() public method

public Matrix2x2 ( float M00 = 1, float M01, float M10, float M11 = 1 ) : System
M00 float
M01 float
M10 float
M11 float
return System

Set() public method

public Set ( float M00, float M01, float M10, float M11 ) : Matrix2x2
M00 float
M01 float
M10 float
M11 float
return Matrix2x2

SetIdentity() public method

public SetIdentity ( ) : Matrix2x2
return Matrix2x2

SetZero() public method

public SetZero ( ) : Matrix2x2
return Matrix2x2

Solve() public method

public Solve ( Vector2f b ) : Vector2f
b Vector2f
return Vector2f

operator() public static method

public static operator ( ) : Vector2f
return Vector2f

this() public method

public this ( int x, int y ) : float
x int
y int
return float

Property Details

M00 public_oe property

public float M00
return float

M10 public_oe property

public float M10
return float