CurveInterpolateUsingFraction Method |
Provides the location of a point on the curve that is the indicated fraction of the
distance between the
InitialPoint and
FinalPoint.
Namespace:
AGI.Foundation.Geometry.Shapes
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract Cartesian InterpolateUsingFraction(
double fraction
)
Public MustOverride Function InterpolateUsingFraction (
fraction As Double
) As Cartesian
public:
virtual Cartesian InterpolateUsingFraction(
double fraction
) abstract
abstract InterpolateUsingFraction :
fraction : float -> Cartesian
Parameters
- fraction
- Type: SystemDouble
The portion of the distance along the curve.
Return Value
Type:
CartesianThe point at the indicated position along the curve.
Remarks
The value of the fraction parameter should range between 0.0 and 1.0.
See Also