| Category | Path construction |
|---|
Purpose — Cubic Bézier where the first control point is explicit and the second equals the endpoint (PDF y operator).
Declarations
C
BOOL32 __stdcall pdfBezier_1_3(PPDF IPDF, double x1, double y1, double x3, double y3);
Delphi
function pdfBezier_1_3(const IPDF: PPDF; x1, y1, x3, y3: Double): LongBool; stdcall; external 'LumasPdf.dll';
Parameters
| Parameter | Type | Description |
|---|---|---|
IPDF | PPDF | Instance handle. |
x1, y1 | Double | Control point (used as both control points per the y operator's semantics). |
x3, y3 | Double | Curve endpoint. |
Return value — TRUE on success; FALSE if no content stream is open.
See also — pdfBezier_2_3
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
[return: MarshalAs(UnmanagedType.Bool)]
Area
Graphics
Category
Core
Exported names
pdfBezier_1_3
String variants
The …A form takes UTF-8, …W
takes UTF-16; a bare name aliases the ANSI form.
See working code
Worked examples — complete programs in ten languages.