- Plane.ConstructPlane(Vertex[0], Vertex[1], Vertex[2]);
- if (Abs(Plane.Normal.x) > Abs(Plane.Normal.y)) and (Abs(Plane.Normal.x) > Abs(Plane.Normal.z)) then
- Result := 'YZ';
- if (Abs(Plane.Normal.y) > Abs(Plane.Normal.x)) and (Abs(Plane.Normal.y) > Abs(Plane.Normal.z)) then
- Result := 'XZ';
- if (Abs(Plane.Normal.z) > Abs(Plane.Normal.x)) and (Abs(Plane.Normal.z) > Abs(Plane.Normal.y)) then
- Result := 'XY';