Click or drag to resize
SbViewVolumeOrtho Method
Sets up an orthographic view volume with the given sides.

Namespace: OIV.Inventor
Assembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2025.1.1.Release.aae05d43a9911e9918768ef1b3c563ff7f85d727
Syntax
public void Ortho(
	float left,
	float right,
	float bottom,
	float top,
	float nearPlane,
	float farPlane
)

Parameters

left
Type: SystemSingle
The coordinate for the left-vertical clipping plane.
right
Type: SystemSingle
The coordinates for the right-vertical clipping plane.
bottom
Type: SystemSingle
The coordinate for the bottom-horizontal clipping plane.
top
Type: SystemSingle
The coordinate for the top-horizontal clipping plane.
nearPlane
Type: SystemSingle
The coordinate of the near clipping plane. The coordinate is negative if the plane is behind the viewer.
farPlane
Type: SystemSingle
The coordinate of the far clipping plane. The coordinate is negative if the plane is behind the viewer.
Remarks
The parameters are the same as for the OpenGL glOrtho() routine.
See Also