CGMutablePathRef によって作成されたパスがあります
CGMutablePathRef pointsPathpath = CGPathCreateMutable();
CGPathMoveToPoint(pointsPathpath, NULL, firstPoint.x, firstPoint.y);
CGPathAddLineToPoint(pointsPathpath, NULL, secondPoint.x, secondPoint.y);
CGPathAddLineToPoint(pointsPathpath, NULL, thirdPoint.x, thirdPoint.y);
CGPathAddLineToPoint(pointsPathpath, NULL, fourthPoint.x, fourthPoint.y);
CGPathCloseSubpath(pointsPathpath);
その境界点を取得する方法はありますか?
前もって感謝します。