Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. void CGPathAddPath (
  2. CGMutablePathRef path1, // The mutable path to change.
  3. const CGAffineTransform *m, // A pointer to an affine transformation matrix, or NULL if no transformation is needed. If > specified, Quartz applies the transformation to path2 before it is added to path1.
  4. CGPathRef path2 // The path to add.
  5. );
  6.  
  7. UIBezierPath *endPath = [UIBezierPath bezierPath];
  8. [endPath appendPath:leftLine];
  9. [endPath appendPath:rightLine];
  10. [endPath appendPath:midLine];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement