A3DPDFGraphicBezierCurveData
-
struct
A3DPDFGraphicBezierCurveData Structure that defines a graphic bezier curve.
9.1
Variables
-
A3DUns32
A3DPDFGraphicBezierCurveData.m_iNumberOfPoints -
The size of
m_pdPointsexpressed in number of points.
-
A3DDouble *
A3DPDFGraphicBezierCurveData.m_pdPoints -
The coordinates x, y of the points.
The coordinate origin (0, 0) is the bottom left of the page. The unit is point. They must be given as x1, y1, x2, y2, x3, y3, …, xn, yn. So the size of the array will be 2*m_iNumberOfPoints.
-
A3DPDFRgbColorData
A3DPDFGraphicBezierCurveData.m_sCurveColor -
The color of the curve.
-
A3DPDFRgbColorData *
A3DPDFGraphicBezierCurveData.m_pFillColor -
Optional: the filling color.
-
A3DDouble
A3DPDFGraphicBezierCurveData.m_dWidth -
The width of the curve.
-
A3DDouble
A3DPDFGraphicBezierCurveData.m_dDashSize -
The size of the visible part of a dashed curve in points.
If O the curve will be plain.
-
A3DDouble
A3DPDFGraphicBezierCurveData.m_dGapSize -
The size of the invisible part of a dashed curve in points.
If O the curve will be plain.
-
A3DPDFDashPatternData *
A3DPDFGraphicBezierCurveData.m_pDashPattern -
Optional: the dash pattern.
If m_pDashPattern is defined, it supersedes m_dDashSize and m_dGapSize.