Transform3Translation(Double, Double, Double) Method

Constructs a new translation (move) transformation. Right column is (dx, dy, dz, 1.0).

Definition

Namespace: Karamba.Geometry
Assembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
C#
public static Transform3 Translation(
	double dx,
	double dy,
	double dz
)

Parameters

dx  Double
Distance to translate (move) geometry along the world X axis.
dy  Double
Distance to translate (move) geometry along the world Y axis.
dz  Double
Distance to translate (move) geometry along the world Z axis.

Return Value

Transform3
A transform matrix which moves geometry with the specified distances.

See Also