Matrix4d.CreateOrthographic 方法

定义

重载

CreateOrthographic(Double, Double, Double, Double, Matrix4d)

创建正交投影矩阵。

CreateOrthographic(Double, Double, Double, Double)

CreateOrthographic(Double, Double, Double, Double, Matrix4d)

创建正交投影矩阵。

public static void CreateOrthographic (double width, double height, double zNear, double zFar, out OpenTK.Matrix4d result);
static member CreateOrthographic : double * double * double * double *  -> unit

参数

width
Double

投影卷的宽度。

height
Double

投影卷的高度。

zNear
Double

投影卷的近边缘。

zFar
Double

投影卷的远边缘。

result
Matrix4d

生成的 Matrix4d 实例。

适用于

CreateOrthographic(Double, Double, Double, Double)

public static OpenTK.Matrix4d CreateOrthographic (double width, double height, double zNear, double zFar);
static member CreateOrthographic : double * double * double * double -> OpenTK.Matrix4d

参数

width
Double
height
Double
zNear
Double
zFar
Double

返回

适用于