I can draw the quad curve using UIBezierPath's
method addQuadCurveToPoint
in iOS, but unable to find the same method in NSBezierPath.
I can see only below methods in NSBezierPath class,
- moveToPoint:(NSPoint)point;
- lineToPoint:(NSPoint)point;
- curveToPoint:(NSPoint)endPoint
controlPoint1:(NSPoint)controlPoint1
controlPoint2:(NSPoint)controlPoint2;
- closePath;
Is there a way to draw the quad curve in OS X environment?