CurveEvaluation#

class ansys.geometry.core.shapes.curves.curve_evaluation.CurveEvaluation(parameter: ansys.geometry.core.typing.Real = None)#

Provides for evaluating a curve.

Overview#

position

Position of the evaluation.

first_derivative

First derivative of the evaluation.

second_derivative

Second derivative of the evaluation.

curvature

Curvature of the evaluation.

is_set

Determine if the parameter for the evaluation has been set.

parameter

Parameter that the evaluation is based upon.

Import detail#

from ansys.geometry.core.shapes.curves.curve_evaluation import CurveEvaluation

Property detail#

property CurveEvaluation.parameter: ansys.geometry.core.typing.Real#
Abstractmethod:

Parameter that the evaluation is based upon.

Method detail#

CurveEvaluation.is_set() bool#

Determine if the parameter for the evaluation has been set.

abstract CurveEvaluation.position() ansys.geometry.core.math.point.Point3D#

Position of the evaluation.

abstract CurveEvaluation.first_derivative() ansys.geometry.core.math.vector.Vector3D#

First derivative of the evaluation.

abstract CurveEvaluation.second_derivative() ansys.geometry.core.math.vector.Vector3D#

Second derivative of the evaluation.

abstract CurveEvaluation.curvature() ansys.geometry.core.typing.Real#

Curvature of the evaluation.