CADability dotNET
Delegate definition of sSetProjectionEvent.

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public delegate void SetProjectionDelegate(
	IntPtr renderContext,
	IPaintTo3D paintTo3D,
	Projection projection,
	BoundingCube boundingCube
)
Visual Basic
Public Delegate Sub SetProjectionDelegate ( _
	renderContext As IntPtr, _
	paintTo3D As IPaintTo3D, _
	projection As Projection, _
	boundingCube As BoundingCube _
)
Visual C++
public delegate void SetProjectionDelegate(
	IntPtr renderContext, 
	IPaintTo3D^ paintTo3D, 
	Projection^ projection, 
	BoundingCube boundingCube
)

Parameters

renderContext
Type: System..::..IntPtr
The OpenGL render context
paintTo3D
Type: CADability..::..IPaintTo3D
The IPaintTo3D interface of the instance beeing involved
projection
Type: CADability..::..Projection
The projetion that has been set
boundingCube
Type: CADability..::..BoundingCube
The bounging cube for the display

See Also