Example #1
0
 public static void setRotateY(FrameworkElement item, double value)
 {
     TransformUtil.addPlaneProjection(item);
     ((PlaneProjection)item.Projection).RotationY = value;
 }
Example #2
0
 public static double getRotateY(FrameworkElement item)
 {
     TransformUtil.addPlaneProjection(item);
     return(((PlaneProjection)item.Projection).RotationY);
 }