The VECTORSPLINE structure holds information about the spline object.
typedef struct _VECTORPOLYBEZIERSPLINE
{
VECTOROBJECT Object;
VECTORPOINT *Point;
L_INT nPointCount;
VECTORPEN Pen;
L_UINT32 dwFlags;
} VECTORSPLINE, *pVECTORSPLINE;
Abstract object.
Pointer to an array of points which controls the splines path depending on the spline type. The number of points should be:
( puDegree[ 0 ] + puDegree[ 1 ] + + puDegree[ nSecCount 1 ] ) + 1
Number of points in the points
VECTORPEN structure that contains information about the pen to use when drawing the vector spline object
Flag that indicates the mode in which to draw the spline. Possible values are:
Value | Meaning |
---|---|
VECTOR_SPLINE_FITPOINTS | Sets the spline mode to Fit Points. This is the default. |
VECTOR_SPLINE_CONTROLPOINTS | Sets the spline mode to Control Points. |
The spline can be drawn in two modes:
Fit Points: The spline path MUST pass through each and every point specified.
Control Points: The points are used to control the spline path, but not necessarily pass through all of them.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document