Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TPlane
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TPlane< T > operator*=
(
T Scale |
Scale this plane. | Math/Plane.h | |
TPlane< T > operator*=
(
const TPlane< T >& V |
Multiply another plane with this. | Math/Plane.h |
operator*=(T)
Description
Scale this plane.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Plane.h |
| Include Path | #include "Math/Plane.h" |
TPlane < T > operator*=
(
T Scale
)
Copy of plane after scaling.
Parameters
| Name | Remarks |
|---|---|
| Scale | The scaling factor. |
operator*=(const TPlane< T > &)
Description
Multiply another plane with this.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Plane.h |
| Include Path | #include "Math/Plane.h" |
TPlane < T > operator*=
(
const TPlane < T > & V
)
Copy of plane after multiplication.
Parameters
| Name | Remarks |
|---|---|
| V | The other plane. |