Click or drag to resize
XDL

XGraphicsglTranslated Method (Double, Double, Double)

The glTranslated function multiplies the current matrix by a translation matrix.

Namespace:  Pixoneer.NXDL.NGR
Assembly:  NXDLgr (in NXDLgr.dll) Version: 1.2.817.72
Syntax
C#
public virtual void glTranslated(
	double x,
	double y,
	double z
)

Parameters

x
Type: SystemDouble
The x coordinate of a translation vector.
y
Type: SystemDouble
The y coordinate of a translation vector.
z
Type: SystemDouble
The z coordinate of a translation vector.

Return Value

Type: 
This function does not return a value.
Remarks
The glTranslated function produces the translation specified by (x, y, z). The translation vector is used to compute a 4x4 translation matrix:
See Also