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