Transform3Translation(Double, Double, Double) Method
Constructs a new translation (move) transformation.
Right column is (dx, dy, dz, 1.0).
Namespace: Karamba.GeometryAssembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
public static Transform3 Translation(
double dx,
double dy,
double dz
)
Public Shared Function Translation (
dx As Double,
dy As Double,
dz As Double
) As Transform3
public:
static Transform3 Translation(
double dx,
double dy,
double dz
)
static member Translation :
dx : float *
dy : float *
dz : float -> Transform3
- 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.
Transform3A transform matrix which moves geometry with the specified distances.