:class:`ConeEvaluation` ======================= .. py:class:: ansys.geometry.core.shapes.surfaces.cone.ConeEvaluation(cone: Cone, parameter: ansys.geometry.core.shapes.parameterization.ParamUV) Bases: :py:obj:`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. .. !! processed by numpydoc !! .. py:currentmodule:: ConeEvaluation Overview -------- .. tab-set:: .. tab-item:: Properties .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~cone` - Cone being evaluated. * - :py:attr:`~parameter` - Parameter that the evaluation is based upon. * - :py:attr:`~position` - Position of the evaluation. * - :py:attr:`~normal` - Normal to the surface. * - :py:attr:`~u_derivative` - First derivative with respect to the U parameter. * - :py:attr:`~v_derivative` - First derivative with respect to the V parameter. * - :py:attr:`~uu_derivative` - Second derivative with respect to the U parameter. * - :py:attr:`~uv_derivative` - Second derivative with respect to the U and V parameters. * - :py:attr:`~vv_derivative` - Second derivative with respect to the V parameter. * - :py:attr:`~min_curvature` - Minimum curvature of the cone. * - :py:attr:`~min_curvature_direction` - Minimum curvature direction. * - :py:attr:`~max_curvature` - Maximum curvature of the cone. * - :py:attr:`~max_curvature_direction` - Maximum curvature direction. Import detail ------------- .. code-block:: python from ansys.geometry.core.shapes.surfaces.cone import ConeEvaluation Property detail --------------- .. py:property:: cone :type: Cone Cone being evaluated. .. !! processed by numpydoc !! .. py:property:: parameter :type: ansys.geometry.core.shapes.parameterization.ParamUV Parameter that the evaluation is based upon. .. !! processed by numpydoc !! .. py:property:: position :type: ansys.geometry.core.math.point.Point3D Position of the evaluation. :Returns: :obj:`Point3D` Point that lies on the cone at this evaluation. .. !! processed by numpydoc !! .. py:property:: normal :type: ansys.geometry.core.math.vector.UnitVector3D Normal to the surface. :Returns: :obj:`UnitVector3D` Normal unit vector to the cone at this evaluation. .. !! processed by numpydoc !! .. py:property:: u_derivative :type: ansys.geometry.core.math.vector.Vector3D First derivative with respect to the U parameter. :Returns: :obj:`Vector3D` First derivative with respect to the U parameter. .. !! processed by numpydoc !! .. py:property:: v_derivative :type: ansys.geometry.core.math.vector.Vector3D First derivative with respect to the V parameter. :Returns: :obj:`Vector3D` First derivative with respect to the V parameter. .. !! processed by numpydoc !! .. py:property:: uu_derivative :type: ansys.geometry.core.math.vector.Vector3D Second derivative with respect to the U parameter. :Returns: :obj:`Vector3D` Second derivative with respect to the U parameter. .. !! processed by numpydoc !! .. py:property:: uv_derivative :type: ansys.geometry.core.math.vector.Vector3D Second derivative with respect to the U and V parameters. :Returns: :obj:`Vector3D` Second derivative with respect to U and V parameters. .. !! processed by numpydoc !! .. py:property:: vv_derivative :type: ansys.geometry.core.math.vector.Vector3D Second derivative with respect to the V parameter. :Returns: :obj:`Vector3D` Second derivative with respect to the V parameter. .. !! processed by numpydoc !! .. py:property:: min_curvature :type: ansys.geometry.core.typing.Real Minimum curvature of the cone. :Returns: :obj:`Real` Minimum curvature of the cone. .. !! processed by numpydoc !! .. py:property:: min_curvature_direction :type: ansys.geometry.core.math.vector.UnitVector3D Minimum curvature direction. :Returns: :obj:`UnitVector3D` Minimum curvature direction. .. !! processed by numpydoc !! .. py:property:: max_curvature :type: ansys.geometry.core.typing.Real Maximum curvature of the cone. :Returns: :obj:`Real` Maximum curvature of the cone. .. !! processed by numpydoc !! .. py:property:: max_curvature_direction :type: ansys.geometry.core.math.vector.UnitVector3D Maximum curvature direction. :Returns: :obj:`UnitVector3D` Maximum curvature direction. .. !! processed by numpydoc !!