Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/TPlane3
Description
Clip line segment defined by two points against plane. Region of Segment on positive side of Plane is kept.
| Name | ClipSegment |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/PlaneTypes.h |
| Include Path | #include "PlaneTypes.h" |
EClipSegmentType ClipSegment
(
UE::Math::TVector < RealType > & Point0,
UE::Math::TVector < RealType > & Point1
) const
FullyClipped if the segment lies fully behind or exactly in the plane FirstClipped if Point0 became the intersection point on the plane SecondClipped if Point1 became the intersection point on the plane NotClipped if the segment lies fully in front of the plane
Parameters
| Name | Remarks |
|---|---|
| Point0 | first point of segment |
| Point1 | second point of segment |