SVG_PATH_CURVE

4D - Documentation   Français   English   German   4D SVG Component, Command Theme List   4D SVG Component, Index   Back   Previous   Next

version 11.3


SVG_PATH_CURVE (parentSVGObject{; controlStartX; controlStartY; }controlEndX; controlEndY; x; y)

ParameterTypeDescription
parentSVGObjectSVG_RefReference of parent element
controlStartXNumberCoordinate on X axis of control point
controlStartYNumberCoordinate on Y axis of control point
controlEndXNumberCoordinate on X axis of control point
controlEndYNumberCoordinate on Y axis of control point
xNumberCoordinate on X axis of destination point
yNumberCoordinate on Y axis of destination point

Description

The SVG_PATH_CURVE command adds a cubic Bezier curve to the path referenced by parentSVGObject starting from the current point to the point whose coordinates are passed (x, y). If parentSVGObject is not a path reference ('path' element), an error is generated.

The optional controlStartX and controlStartY parameters can be used to specify the position of the control point at the start of the curve. If they are omitted, the first control point is supposed to be the reflection of the second control point of the previous command with respect to the current point.

The controlEndX and controlEndY parameters are used to specify the position of the control point at the end of the curve.

Example

See the examples for the SVG_New_path command.

See Also

SVG_New_path, SVG_PATH_QCURVE.


4D - Documentation   Français   English   German   4D SVG Component, Command Theme List   4D SVG Component, Index   Back   Previous   Next