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