Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
DynaPDF.Bezier123
Draws a bezier path.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
DynaPDF | 4.0 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
MBS( "DynaPDF.Bezier123"; PDF; x1; y1; x2; y2; x3; y3 ) More
Parameters
Parameter | Description | Example |
---|---|---|
The PDF reference returned from DynaPDF.New. | ||
x1 | X-Coordinate of the first control point P1 | $x1 |
y1 | Y-Coordinate of the first control point P1 | $y1 |
x2 | X-Coordinate of the second control point P2 | $x2 |
y2 | Y-Coordinate of the second control point P2 | $y2 |
x3 | X-Coordinate of the end point P3 | $x3 |
y3 | Y-Coordinate of the end point P3 | $y3 |
Result
Returns OK or error.
Description
Draws a bezier path.Curved path segments are specified as cubic Bézier curves. Such curves are defined by four points: the two endpoints (the current point P0 and the final point P3) and two control points P1 and P2. Given the coordinates of the four points, the curve is generated by varying the parameter t from 0.0 to 1.0 in the following equation:
R(t)=(1-t)3P0 +3t(1-t)2P1+3t2(1-t)P2 +t3P3
When t = 0.0, the value of the function R(t) coincides with the current point P0; when t = 1.0, R(t) coincides with the final point P3. Intermediate values of t generate intermediate points along the curve. The curve does not, in general, pass through the two control points P1 and P2. Cubic Bézier curves have two desirable properties:
- The curve can be very quickly split into smaller pieces for rapid rendering.
- The curve is contained within the convex hull of the four points defining the curve, most easily visualized as the polygon obtained by stretching a rubber band around the outside of the four points. This property allows rapid testing of whether the curve lies completely outside the visible region, and hence does not have to be rendered.
As mentioned earlier the function requires a start point that must be set with DynaPDF.MoveTo or another painting operator beforehand. Once the start point was set, multiple curve segments can be drawn to build circles, ellipses or other curved paths. The DynaPDF functions DynaPDF.DrawArc, DynaPDF.DrawCircle, DynaPDF.Ellipse and so on use all DynaPDF.Bezier123 to construct the path.
See also Bezier123 function in DynaPDF manual.
See also
- DynaPDF.Bezier13
- DynaPDF.Bezier23
- DynaPDF.DrawArc
- DynaPDF.DrawCircle
- DynaPDF.Ellipse
- DynaPDF.LineTo
- DynaPDF.MoveTo
- DynaPDF.New
Example Databases
Blog Entries
FileMaker Magazin
This function checks for a license.
Created 18th August 2014, last changed 18th August 2014