System.Math.Vectors.TCubicBezierCurve

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCubicBezierCurve = record

C++

struct DECLSPEC_DRECORD TCubicBezierCurve
{
private:
    System::Types::TPointF StartPoint;
    System::Types::TPointF EndPoint;
    float AX;
    float BX;
    float CX;
    float AY;
    float BY;
    float CY;
public:
    void __fastcall Init(const System::Types::TPointF &A, const System::Types::TPointF &B, const System::Types::TPointF &C, const System::Types::TPointF &D);
    float __fastcall CurveLength(int Segments = 0x6);
    System::Types::TPointF __fastcall GetPoint(int Index, int Total)/* overload */;
    System::Types::TPointF __fastcall GetPoint(float T)/* overload */;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Math.Vectors.pas
System.Math.Vectors.hpp
System.Math.Vectors System.Math.Vectors

Description

Embarcadero Technologies does not currently have any additional information.