TCPDF::_outCurveY( $x1, $y1, $x3, $y3 )
Append a cubic Bezier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x3, y3) as the Bezier control points.
Description Description
The new current point shall be (x3, y3).
Parameters Parameters
- $x1
-
(Required) (float) Abscissa of control point 1.
- $y1
-
(Required) (float) Ordinate of control point 1.
- $x3
-
(Required) (float) Abscissa of end point.
- $y3
-
(Required) (float) Ordinate of end point.
Source Source
File: includes/lib/tcpdf/tcpdf.php
Changelog Changelog
Version | Description |
---|---|
2.1.000 | Introduced. |