コード例 #1
0
 internal override void setClipShape(Shape clip)
 {
     clipTransform = transform == null ? null : transform.copy();
     if (clip.isRectangle())
     {
         this.clip      = clip.getBounds();
         this.clipShape = null;
     }
     else
     {
         this.clipShape = SilverlightImplementation.instance.cn1ShapeToAndroidPath(clip);
         this.clip      = null;
     }
     projectedClip = null;
 }
コード例 #2
0
 public virtual com.codename1.ui.Transform getTransform()
 {
     return(transform.copy());
     //return graphics.Transform;
 }