Matrix4d.CreateOrthographicOffCenter 方法

定义

重载

CreateOrthographicOffCenter(Double, Double, Double, Double, Double, Double)
CreateOrthographicOffCenter(Double, Double, Double, Double, Double, Double, Matrix4d)

创建正交投影矩阵。

CreateOrthographicOffCenter(Double, Double, Double, Double, Double, Double)

public static OpenTK.Matrix4d CreateOrthographicOffCenter (double left, double right, double bottom, double top, double zNear, double zFar);
static member CreateOrthographicOffCenter : double * double * double * double * double * double -> OpenTK.Matrix4d

参数

left
Double
right
Double
bottom
Double
top
Double
zNear
Double
zFar
Double

返回

适用于

CreateOrthographicOffCenter(Double, Double, Double, Double, Double, Double, Matrix4d)

创建正交投影矩阵。

public static void CreateOrthographicOffCenter (double left, double right, double bottom, double top, double zNear, double zFar, out OpenTK.Matrix4d result);
static member CreateOrthographicOffCenter : double * double * double * double * double * double *  -> unit

参数

left
Double

投影卷的左边缘。

right
Double

投影卷的右边缘。

bottom
Double

投影卷的下边缘。

top
Double

投影卷的上边缘。

zNear
Double

投影卷的近边缘。

zFar
Double

投影卷的远边缘。

result
Matrix4d

生成的 Matrix4d 实例。

适用于