THPDFPage.CurveToV

THPDFPage

 

Đầu trang  Trước  Tiếp

Draws V cubic Bezier curve.

 

Delphi syntax:

procedure CurveToV( X2, Y2, X3, Y3: Single );

 

C++ syntax:

void __fastcall CurveToV( float X2, float Y2, float X3, float Y3 );

 

Mô tả

Gọi CurveToC để vẽ đường cong Bezier bậc ba V, xác định rõ tọa độ của hai điểm như trong hình

 

                                          X2, Y2

CurveToV control point diagram

Điểm hiện tại

 

Ví dụ mã

program CurveExample;
{$APPTYPE CONSOLE}
uses
    SysUtils, Graphics, Classes, HPDFDoc;

var
    HPDF: THotPDF;

begin
    HPDF := THotPDF.Create( nil );
    try
        HPDF.AutoLaunch := true;                        // PDF file will be shown automatically
        HPDF.FileName := '.\Curve.pdf';                 // Set PDF filename
        HPDF.BeginDoc;                                  // Create PDF file
        HPDF.CurrentPage.MoveTo( 50, 300 );             // Move first point
        HPDF.CurrentPage.CurveToV(150, 50, 200, 200);   // Draw curve
        HPDF.CurrentPage.Stroke;                        // Stroke curve
        HPDF.EndDoc;                                    // Close PDF file
    finally
        HPDF.Free;
    end;
end.