Click or drag to resize

CurveGetAbsolutePart Method (Double, Double, Origin)

[This is preliminary documentation and is subject to change.]

Retrieves an absolute part of the curve as a new curve. The origin parameter will dictate the direction of the curve

Namespace:  Infrastructure.Geometry.Curves
Assembly:  Infrastructure.Geometry (in Infrastructure.Geometry.dll) Version: 1.13.0+Branch.master.Sha.d583fc64569355d188a9c0818d257b6d0d3e1339
Syntax
C#
public virtual Curve GetAbsolutePart(
	double from,
	double to,
	Origin origin
)

Parameters

from
Type: SystemDouble
The start of the new curve. Should be between 0 and Length
to
Type: SystemDouble
The end of the new curve. Should be between 0 and Length
origin
Type: Infrastructure.Geometry.EnumsOrigin
Dictates how from and to relate to each other and to the curve. When using start, the new curve will go from 'from' to 'to'. When using end, the new curve will from 'to' to 'from'.

Return Value

Type: Curve
A new curve that is a part of the original curve
See Also