C# Class StdPaint.Matrix4

A 4x4 matrix for use in 3D.
显示文件 Open project: TheBerkin/StdPaint Class Usage Examples

Public Methods

Method Description
CreateRotationX ( double radians ) : Matrix4
CreateRotationY ( double radians ) : Matrix4
CreateRotationZ ( double radians ) : Matrix4
Matrix4 ( ) : System

Create a new Matrix4 object.

operator ( ) : Matrix4
this ( int i ) : double
this ( int i, int j ) : double

Method Details

CreateRotationX() public static method

public static CreateRotationX ( double radians ) : Matrix4
radians double
return Matrix4

CreateRotationY() public static method

public static CreateRotationY ( double radians ) : Matrix4
radians double
return Matrix4

CreateRotationZ() public static method

public static CreateRotationZ ( double radians ) : Matrix4
radians double
return Matrix4

Matrix4() public method

Create a new Matrix4 object.
public Matrix4 ( ) : System
return System

operator() public static method

public static operator ( ) : Matrix4
return Matrix4

this() public method

public this ( int i ) : double
i int
return double

this() public method

public this ( int i, int j ) : double
i int
j int
return double