PATHOBJ_bPolyBezierTo
BOOL PATHOBJ_bPolyBezierTo(
IN PATHOBJ *ppo,
|
|
IN POINTFIX *pptfx,
|
|
IN ULONG cptfx
|
|
);
|
|
PATHOBJ_bPolyBezierTo draws Bezier curves on a path.
Parameters
-
ppo
-
Points to the PATHOBJ created by the driver.
-
pptfx
-
Points to the array of control points. Each set of three control points, along
with the preceding control point, or current position, determines a Bezier.
-
cptfx
-
Specifies the count of points in pptfx. Must be a multiple of three.
Return Value
The return value is TRUE if the function is successful. Otherwise, it is
FALSE, and an error code is logged.
Comments
PATHOBJ_bPolyBezierTo must be called only with a PATHOBJ created by EngCreatePath.
See Also
PATHOBJ, PATHOBJ_bPolylineTo