CurveShape

CurveShape constructor (1 of 5)

Initializes a new instance of the CurveShape class.

public CurveShape()

See Also


CurveShape constructor (2 of 5)

Initializes a new instance of the CurveShape class. The default tension of 0.5 is used.

public CurveShape(PointF[] points)
ParameterTypeDescription
pointsPointF[]The points array.

See Also


CurveShape constructor (3 of 5)

Initializes a new instance of the CurveShape class. The default tension of 0.5 is used.

public CurveShape(PointF[] points, bool isClosed)
ParameterTypeDescription
pointsPointF[]The points array.
isClosedBooleanif set to true the curve is closed.

See Also


CurveShape constructor (4 of 5)

Initializes a new instance of the CurveShape class.

public CurveShape(PointF[] points, float tension)
ParameterTypeDescription
pointsPointF[]The points array.
tensionSingleThe curve tension.

See Also


CurveShape constructor (5 of 5)

Initializes a new instance of the CurveShape class.

public CurveShape(PointF[] points, float tension, bool isClosed)
ParameterTypeDescription
pointsPointF[]The points array.
tensionSingleThe curve tension.
isClosedBooleanif set to true the curve is closed.

See Also