Class TranslateTransform3D
Translates an object in the three-dimensional x-y-z plane.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Media.Media3D
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class TranslateTransform3D : AffineTransform3D, INotifyPropertyChanged
Constructors
TranslateTransform3D()
Initializes a new instance of the TranslateTransform3D class.
Declaration
public TranslateTransform3D()
TranslateTransform3D(Double, Double, Double)
Initializes a new instance of the TranslateTransform3D class using the specified offset.
Declaration
public TranslateTransform3D(double offsetX, double offsetY, double offsetZ)
Parameters
System.Double
offsetX
Double that specifies the X value of the Vector3D that specifies the translation offset. |
System.Double
offsetY
Double that specifies the Y value of the Vector3D that specifies the translation offset. |
System.Double
offsetZ
Double that specifies the Z value of the Vector3D that specifies the translation offset. |
TranslateTransform3D(Vector3D)
Initializes a new instance of the TranslateTransform3D class, using the specified offset Vector3D.
Declaration
public TranslateTransform3D(Vector3D offset)
Parameters
Vector3D
offset
Vector3D by which to offset the model. |
Fields
OffsetXProperty
Identifies the OffsetX dependency property.
Declaration
public static readonly DependencyProperty OffsetXProperty
Field Value
System.Windows.DependencyProperty
|
OffsetYProperty
Identifies the OffsetY dependency property.
Declaration
public static readonly DependencyProperty OffsetYProperty
Field Value
System.Windows.DependencyProperty
|
OffsetZProperty
Identifies the OffsetZ dependency property.
Declaration
public static readonly DependencyProperty OffsetZProperty
Field Value
System.Windows.DependencyProperty
|
Properties
OffsetX
Gets or sets the X-axis value of the translation's offset. This is a dependency property.
Declaration
public double OffsetX { get; set; }
Property Value
System.Double
|
OffsetY
Gets or sets the Y-axis value of the translation's offset. This is a dependency property.
Declaration
public double OffsetY { get; set; }
Property Value
System.Double
|
OffsetZ
Gets or sets the Z-axis value of the translation's offset. This is a dependency property.
Declaration
public double OffsetZ { get; set; }
Property Value
System.Double
|
Methods
OffsetChangedHandler(DependencyObject, DependencyPropertyChangedEventArgs)
One of the offset properties changed callback.
Declaration
protected static void OffsetChangedHandler(DependencyObject source, DependencyPropertyChangedEventArgs eventArgs)
Parameters
System.Windows.DependencyObject
source
Source. |
System.Windows.DependencyPropertyChangedEventArgs
eventArgs
Event Args. |