TranslateTransform3D Constructors

Definition

Initializes a new instance of the TranslateTransform3D class.

Overloads

TranslateTransform3D()

Initializes a new instance of the TranslateTransform3D class.

TranslateTransform3D(Vector3D)

Initializes a new instance of the TranslateTransform3D class, using the specified offset Vector3D.

TranslateTransform3D(Double, Double, Double)

Initializes a new instance of the TranslateTransform3D class using the specified offset.

TranslateTransform3D()

Initializes a new instance of the TranslateTransform3D class.

C#
public TranslateTransform3D();

Applies to

.NET Framework 4.8.1 dan versi lain
Produk Versi
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

TranslateTransform3D(Vector3D)

Initializes a new instance of the TranslateTransform3D class, using the specified offset Vector3D.

C#
public TranslateTransform3D(System.Windows.Media.Media3D.Vector3D offset);

Parameters

offset
Vector3D

Vector3D by which to offset the model.

Examples

The following code excerpt creates a new TranslateTransform3D. To use the transformation, add it to the Model3D to be transformed.

C#
TranslateTransform3D cube2Translation = new TranslateTransform3D(new Vector3D(2, 0, 0));

Applies to

.NET Framework 4.8.1 dan versi lain
Produk Versi
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

TranslateTransform3D(Double, Double, Double)

Initializes a new instance of the TranslateTransform3D class using the specified offset.

C#
public TranslateTransform3D(double offsetX, double offsetY, double offsetZ);

Parameters

offsetX
Double

Double that specifies the X value of the Vector3D that specifies the translation offset.

offsetY
Double

Double that specifies the Y value of the Vector3D that specifies the translation offset.

offsetZ
Double

Double that specifies the Z value of the Vector3D that specifies the translation offset.

Applies to

.NET Framework 4.8.1 dan versi lain
Produk Versi
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10