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