Navigation
API > API/Runtime > API/Runtime/InteractiveToolsFramework
Description
Construct a FFrame3 for the given plane parameters, to remove axis ambiguity and invalid transforms. Normal = X, Up = Z, Side = Y
| Name | UE::InteractiveToolsFramework::MakePlaneFrame |
| Type | function |
| Header File | /Engine/Source/Runtime/InteractiveToolsFramework/Public/BaseGizmos/GizmoElementShared.h |
| Include Path | #include "BaseGizmos/GizmoElementShared.h" |
namespace UE
{
namespace InteractiveToolsFramework
{
template<typename RealType, std::enable_if_t<(std::is_floating_point_v< RealType >), int >>
Geometry::TFrame3 < RealType > UE::InteractiveToolsFramework::MakePlaneFrame
(
const Math::TVector < RealType > & InOrigin,
const Math::TVector < RealType > & InNormal,
const Math::TVector < RealType > & InUp,
const Math::TVector < RealType > & InSide
)
}
}