VisualRotateToLocalX Method |
Namespace: Demo3D.Visuals
public void RotateToLocalX( double localXDegrees, double degreesPerSecond )
// This example will rotate a visual around its local X axis (its parent's X axis) a given amount // at a given speed. void RotateToLocalX_OnClick(Visual sender, PickInfo pickInfo) { sender.RotateToLocalX(90, 45); }