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: 2024.1.1.Release.7989217834dd2b99155f267b6c8c70f9feacdedd
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