예제 #1
0
파일: CGPath.cs 프로젝트: kangaroo/maccore
		public CGPathElement (int t)
		{
			Type = (CGPathElementType) t;
			Point1 = Point2 = Point3 = new PointF (0,0);
		}
예제 #2
0
 public CGPathElement(int t)
 {
     Type   = (CGPathElementType)t;
     Point1 = Point2 = Point3 = CGPoint.Empty;
 }
예제 #3
0
		public CGPathElement (int t)
		{
			Type = (CGPathElementType) t;
			Point1 = Point2 = Point3 = CGPoint.Empty;
		}
예제 #4
0
파일: CGPath.cs 프로젝트: Terricide/monomac
 public CGPathElement(int t)
 {
     Type   = (CGPathElementType)t;
     Point1 = Point2 = Point3 = new CGPoint(0, 0);
 }