Cone
#
- class ansys.geometry.core.shapes.surfaces.cone.Cone(origin: numpy.ndarray | ansys.geometry.core.typing.RealSequence | ansys.geometry.core.math.point.Point3D, radius: pint.Quantity | ansys.geometry.core.misc.measurements.Distance | ansys.geometry.core.typing.Real, half_angle: pint.Quantity | ansys.geometry.core.misc.measurements.Angle | ansys.geometry.core.typing.Real, reference: numpy.ndarray | ansys.geometry.core.typing.RealSequence | ansys.geometry.core.math.vector.UnitVector3D | ansys.geometry.core.math.vector.Vector3D = UNITVECTOR3D_X, axis: numpy.ndarray | ansys.geometry.core.typing.RealSequence | ansys.geometry.core.math.vector.UnitVector3D | ansys.geometry.core.math.vector.Vector3D = UNITVECTOR3D_Z)#
Bases:
ansys.geometry.core.shapes.surfaces.surface.Surface
Provides 3D cone representation.
- Parameters:
- origin
ndarray
|RealSequence
|Point3D
Origin of the cone.
- radius
Quantity
|Distance
|Real
Radius of the cone.
- half_angle
Quantity
|Angle
|Real
Half angle of the apex, determining the upward angle.
- reference
ndarray
|RealSequence
|UnitVector3D
|Vector3D
X-axis direction.
- axis
ndarray
|RealSequence
|UnitVector3D
|Vector3D
Z-axis direction.
- origin
Overview#
Check a parameter is within the parametric range of the surface. |
|
Check a point is contained by the surface. |
Create a transformed copy of the cone from a transformation matrix. |
|
Create a mirrored copy of the cone along the y-axis. |
|
Evaluate the cone at given parameters. |
|
Project a point onto the cone and evaluate the cone. |
|
Parameterize the cone surface as a tuple (U and V respectively). |
Origin of the cone. |
|
Radius of the cone. |
|
Half angle of the apex. |
|
X-direction of the cone. |
|
Y-direction of the cone. |
|
Z-direction of the cone. |
|
Height of the cone. |
|
Surface area of the cone. |
|
Volume of the cone. |
|
Apex point of the cone. |
|
Apex parameter of the cone. |
Equals operator for the |
Import detail#
from ansys.geometry.core.shapes.surfaces.cone import Cone
Property detail#
- property Cone.origin: ansys.geometry.core.math.point.Point3D#
Origin of the cone.
- property Cone.radius: pint.Quantity#
Radius of the cone.
- property Cone.half_angle: pint.Quantity#
Half angle of the apex.
- property Cone.dir_x: ansys.geometry.core.math.vector.UnitVector3D#
X-direction of the cone.
- property Cone.dir_y: ansys.geometry.core.math.vector.UnitVector3D#
Y-direction of the cone.
- property Cone.dir_z: ansys.geometry.core.math.vector.UnitVector3D#
Z-direction of the cone.
- property Cone.height: pint.Quantity#
Height of the cone.
- property Cone.surface_area: pint.Quantity#
Surface area of the cone.
- property Cone.volume: pint.Quantity#
Volume of the cone.
- property Cone.apex: ansys.geometry.core.math.point.Point3D#
Apex point of the cone.
- property Cone.apex_param: ansys.geometry.core.typing.Real#
Apex parameter of the cone.
Method detail#
- Cone.transformed_copy(matrix: ansys.geometry.core.math.matrix.Matrix44) Cone #
Create a transformed copy of the cone from a transformation matrix.
- Parameters:
- matrix
Matrix44
4x4 transformation matrix to apply to the cone.
- matrix
- Returns:
Cone
New cone that is the transformed copy of the original cone.
- Cone.mirrored_copy() Cone #
Create a mirrored copy of the cone along the y-axis.
- Returns:
Cone
New cone that is a mirrored copy of the original cone.
- Cone.evaluate(parameter: ansys.geometry.core.shapes.parameterization.ParamUV) ConeEvaluation #
Evaluate the cone at given parameters.
- Parameters:
- parameter
ParamUV
Parameters (u,v) to evaluate the cone at.
- parameter
- Returns:
ConeEvaluation
Resulting evaluation.
- Cone.project_point(point: ansys.geometry.core.math.point.Point3D) ConeEvaluation #
Project a point onto the cone and evaluate the cone.
- Parameters:
- point
Point3D
Point to project onto the cone.
- point
- Returns:
ConeEvaluation
Resulting evaluation.
- Cone.parameterization() tuple[ansys.geometry.core.shapes.parameterization.Parameterization, ansys.geometry.core.shapes.parameterization.Parameterization] #
Parameterize the cone surface as a tuple (U and V respectively).
The U parameter specifies the clockwise angle around the axis (right-hand corkscrew law), with a zero parameter at
dir_x
and a period of 2*pi.The V parameter specifies the distance along the axis, with a zero parameter at the XY plane of the cone.
- Returns:
tuple
[Parameterization
,Parameterization
]Information about how a cone’s u and v parameters are parameterized, respectively.
- abstract Cone.contains_param(param_uv: ansys.geometry.core.shapes.parameterization.ParamUV) bool #
Check a parameter is within the parametric range of the surface.
- abstract Cone.contains_point(point: ansys.geometry.core.math.point.Point3D) bool #
Check a point is contained by the surface.
The point can either lie within the surface or on its boundary.