Пример #1
0
		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
 public CGPathElement(int t)
 {
     Type   = (CGPathElementType)t;
     Point1 = Point2 = Point3 = new CGPoint(0, 0);
 }