CylinderEvaluation
#
- class ansys.geometry.core.shapes.surfaces.cylinder.CylinderEvaluation(cylinder: Cylinder, parameter: ansys.geometry.core.shapes.parameterization.ParamUV)#
Bases:
ansys.geometry.core.shapes.surfaces.surface_evaluation.SurfaceEvaluation
Provides evaluation of a cylinder at given parameters.
- Parameters:
- cylinder: ~ansys.geometry.core.shapes.surfaces.cylinder.Cylinder
Cylinder to evaluate.
- parameter: ParamUV
Parameters (u, v) to evaluate the cylinder at.
Overview#
Cylinder being evaluated. |
|
Parameter that the evaluation is based upon. |
|
Position of the evaluation. |
|
Normal to the surface. |
|
First derivative with respect to the U parameter. |
|
First derivative with respect to the V parameter. |
|
Second derivative with respect to the U parameter. |
|
Second derivative with respect to the U and V parameters. |
|
Second derivative with respect to the V parameter. |
|
Minimum curvature of the cylinder. |
|
Minimum curvature direction. |
|
Maximum curvature of the cylinder. |
|
Maximum curvature direction. |
Import detail#
from ansys.geometry.core.shapes.surfaces.cylinder import CylinderEvaluation
Property detail#
- property CylinderEvaluation.parameter: ansys.geometry.core.shapes.parameterization.ParamUV#
Parameter that the evaluation is based upon.
- property CylinderEvaluation.position: ansys.geometry.core.math.point.Point3D#
Position of the evaluation.
- Returns:
Point3D
Point that lies on the cylinder at this evaluation.
- property CylinderEvaluation.normal: ansys.geometry.core.math.vector.UnitVector3D#
Normal to the surface.
- Returns:
UnitVector3D
Normal unit vector to the cylinder at this evaluation.
- property CylinderEvaluation.u_derivative: ansys.geometry.core.math.vector.Vector3D#
First derivative with respect to the U parameter.
- Returns:
Vector3D
First derivative with respect to the U parameter.
- property CylinderEvaluation.v_derivative: ansys.geometry.core.math.vector.Vector3D#
First derivative with respect to the V parameter.
- Returns:
Vector3D
First derivative with respect to the V parameter.
- property CylinderEvaluation.uu_derivative: ansys.geometry.core.math.vector.Vector3D#
Second derivative with respect to the U parameter.
- Returns:
Vector3D
Second derivative with respect to the U parameter.
- property CylinderEvaluation.uv_derivative: ansys.geometry.core.math.vector.Vector3D#
Second derivative with respect to the U and V parameters.
- Returns:
Vector3D
Second derivative with respect to the U and v parameters.
- property CylinderEvaluation.vv_derivative: ansys.geometry.core.math.vector.Vector3D#
Second derivative with respect to the V parameter.
- Returns:
Vector3D
Second derivative with respect to the V parameter.
- property CylinderEvaluation.min_curvature: ansys.geometry.core.typing.Real#
Minimum curvature of the cylinder.
- Returns:
Real
Minimum curvature of the cylinder.
- property CylinderEvaluation.min_curvature_direction: ansys.geometry.core.math.vector.UnitVector3D#
Minimum curvature direction.
- Returns:
UnitVector3D
Mminimum curvature direction.
- property CylinderEvaluation.max_curvature: ansys.geometry.core.typing.Real#
Maximum curvature of the cylinder.
- Returns:
Real
Maximum curvature of the cylinder.
- property CylinderEvaluation.max_curvature_direction: ansys.geometry.core.math.vector.UnitVector3D#
Maximum curvature direction.
- Returns:
UnitVector3D
Maximum curvature direction.