Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TVector
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static TVector< T > PointPlaneProject
(
const TVector< T >& Point, |
Calculate the projection of a point on the given plane. | Math/Vector.h | |
static TVector< T > PointPlaneProject
(
const TVector< T >& Point, |
Calculate the projection of a point on the plane defined by PlaneBase and PlaneNormal. | Math/Vector.h | |
| Calculate the projection of a point on the plane defined by counter-clockwise (CCW) points A,B,C. | Math/Vector.h |
PointPlaneProject(const TVector< T > &, const TPlane< T > &)
Description
Calculate the projection of a point on the given plane.
| Name | PointPlaneProject |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Vector.h |
| Include Path | #include "Math/Vector.h" |
| Source | /Engine/Source/Runtime/Core/Public/Math/Plane.h |
static TVector < T > PointPlaneProject
(
const TVector < T > & Point,
const TPlane < T > & Plane
)
Projection of Point onto Plane
Parameters
| Name | Remarks |
|---|---|
| Point | The point to project onto the plane |
| Plane | The plane |
PointPlaneProject(const TVector< T > &, const TVector< T > &, const TVector< T > &)
Description
Calculate the projection of a point on the plane defined by PlaneBase and PlaneNormal.
| Name | PointPlaneProject |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Vector.h |
| Include Path | #include "Math/Vector.h" |
static TVector < T > PointPlaneProject
(
const TVector < T > & Point,
const TVector < T > & PlaneBase,
const TVector < T > & PlaneNormal
)
Projection of Point onto plane
Parameters
| Name | Remarks |
|---|---|
| Point | The point to project onto the plane |
| PlaneBase | Point on the plane |
| PlaneNorm | Normal of the plane (assumed to be unit length). |
PointPlaneProject(const TVector< T > &, const TVector< T > &, const TVector< T > &, const TVector< T > &)
Description
Calculate the projection of a point on the plane defined by counter-clockwise (CCW) points A,B,C.
| Name | PointPlaneProject |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Vector.h |
| Include Path | #include "Math/Vector.h" |
| Source | /Engine/Source/Runtime/Core/Public/Math/Plane.h |
static TVector < T > PointPlaneProject
(
const TVector < T > & Point,
const TVector < T > & A,
const TVector < T > & B,
const TVector < T > & C
)
Projection of Point onto plane ABC
Parameters
| Name | Remarks |
|---|---|
| Point | The point to project onto the plane |
| A | 1st of three points in CCW order defining the plane |
| B | 2nd of three points in CCW order defining the plane |
| C | 3rd of three points in CCW order defining the plane |