Esempio n. 1
0
 public void FillPath(IColor color, RGPath graphicsPath)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 public CGPath(CGPath basePath)
     : base(CGPathCreateMutableCopy(Runtime.ThrowOnNull(basePath, nameof(basePath)).Handle), true)
 {
 }
Esempio n. 3
0
 public void DrawPath(SolidColor color, RGPath graphicsPath)
 {
     throw new NotImplementedException();
 }
Esempio n. 4
0
 public CGPath(CGPath reference, CGAffineTransform transform)
     : base(CGPathCreateMutableCopyByTransformingPath(Runtime.ThrowOnNull(reference, nameof(reference)).Handle, ref transform), true)
 {
 }