InterviewSolution
Saved Bookmarks
| 1. |
Which of the following methods adds and connects the point to the cubic bezier curve?(a) bezierConnect()(b) bezierCurveTo()(c) Connectbezier()(d) bezierTo() |
|
Answer» Correct option is (b) bezierCurveTo() The explanation: A cubic bezier curve requires three points. The first two points are control points that are used in the cubic Bézier calculation and the last point is the ending point for the curve. This method adds a new point P to the subpath and connects it to the current point with a cubic Bezier curve. |
|