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