Applys RotateTransform3D to the object with objectName and to all its child objects - enables rotating object around custom center point.

Namespace:  Ab3d
Assembly:  Ab3d.Reader3ds (in Ab3d.Reader3ds)
Version: 4.2.0.0 (4.2.0.0)

Syntax

C#
public void RotateObject(
	string objectName,
	RotateTransform3D objectRotateTransform
)
Visual Basic (Declaration)
Public Sub RotateObject ( _
	objectName As String, _
	objectRotateTransform As RotateTransform3D _
)
Visual C++
public:
void RotateObject(
	String^ objectName, 
	RotateTransform3D^ objectRotateTransform
)

Parameters

objectName
Type: System..::.String
name of the object in 3ds file
objectRotateTransform
Type: System.Windows.Media.Media3D..::.RotateTransform3D
RotateTransform3D to apply - here it is possible to specify the center of rotation

See Also