| CylinderShapeGetSupportPointNormalized Method |
Gets a support point for a given normalized direction vector.
Namespace: DigitalRune.Geometry.ShapesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public override Vector3F GetSupportPointNormalized(
Vector3F directionNormalized
)
Public Overrides Function GetSupportPointNormalized (
directionNormalized As Vector3F
) As Vector3F
public:
virtual Vector3F GetSupportPointNormalized(
Vector3F directionNormalized
) override
abstract GetSupportPointNormalized :
directionNormalized : Vector3F -> Vector3F
override GetSupportPointNormalized :
directionNormalized : Vector3F -> Vector3F
Parameters
- directionNormalized
- Type: DigitalRune.Mathematics.AlgebraVector3F
The normalized direction vector for which to get the support point.
Return Value
Type:
Vector3FA support point regarding the given direction.
Remarks
A support point regarding a direction is an extreme point of the shape that is furthest away
from the center regarding the given direction. This point is not necessarily unique.
See Also