System.Math.Vectors.TCubicBezier

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCubicBezier = array [0..3] of TPointF;

C++

typedef System::StaticArray<System::Types::TPointF, 4> TCubicBezier;

Properties

Type Visibility Source Unit Parent
array
typedef
public
System.Math.Vectors.pas
System.Math.Vectors.hpp
System.Math.Vectors System.Math.Vectors

Description

Defines a cubic Bezier curve.

TCubicBezier curve is defined by 4 TPointF variables. The curve starts from the first point and arrives to the fourth point, using directions from the second and third point.

See Also