ConeEvaluation#

class ansys.geometry.core.shapes.surfaces.cone.ConeEvaluation(cone: Cone, parameter: ansys.geometry.core.shapes.parameterization.ParamUV)#

Bases: ansys.geometry.core.shapes.surfaces.surface_evaluation.SurfaceEvaluation

Evaluate the cone at given parameters.

Parameters:
cone: ~ansys.geometry.core.shapes.surfaces.cone.Cone

Cone to evaluate.

parameter: ParamUV

Pparameters (u, v) to evaluate the cone at.

Overview#

position

Position of the evaluation.

normal

Normal to the surface.

u_derivative

First derivative with respect to the U parameter.

v_derivative

First derivative with respect to the V parameter.

uu_derivative

Second derivative with respect to the U parameter.

uv_derivative

Second derivative with respect to the U and V parameters.

vv_derivative

Second derivative with respect to the V parameter.

min_curvature

Minimum curvature of the cone.

min_curvature_direction

Minimum curvature direction.

max_curvature

Maximum curvature of the cone.

max_curvature_direction

Maximum curvature direction.

cone

Cone being evaluated.

parameter

Parameter that the evaluation is based upon.

Import detail#

from ansys.geometry.core.shapes.surfaces.cone import ConeEvaluation

Property detail#

property ConeEvaluation.cone: Cone#

Cone being evaluated.

property ConeEvaluation.parameter: ansys.geometry.core.shapes.parameterization.ParamUV#

Parameter that the evaluation is based upon.

Method detail#

ConeEvaluation.position() ansys.geometry.core.math.point.Point3D#

Position of the evaluation.

Returns:
Point3D

Point that lies on the cone at this evaluation.

ConeEvaluation.normal() ansys.geometry.core.math.vector.UnitVector3D#

Normal to the surface.

Returns:
UnitVector3D

Normal unit vector to the cone at this evaluation.

ConeEvaluation.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.

ConeEvaluation.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.

ConeEvaluation.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.

ConeEvaluation.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 U and V parameters.

ConeEvaluation.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.

ConeEvaluation.min_curvature() ansys.geometry.core.typing.Real#

Minimum curvature of the cone.

Returns:
Real

Minimum curvature of the cone.

ConeEvaluation.min_curvature_direction() ansys.geometry.core.math.vector.UnitVector3D#

Minimum curvature direction.

Returns:
UnitVector3D

Minimum curvature direction.

ConeEvaluation.max_curvature() ansys.geometry.core.typing.Real#

Maximum curvature of the cone.

Returns:
Real

Maximum curvature of the cone.

ConeEvaluation.max_curvature_direction() ansys.geometry.core.math.vector.UnitVector3D#

Maximum curvature direction.

Returns:
UnitVector3D

Maximum curvature direction.