Files
lace/3-mid/opengl/source/lean/opengl-frustum.ads
2022-07-31 17:34:54 +10:00

13 lines
269 B
Ada

package openGL.Frustum
--
-- Provide frustum operations.
--
is
type Plane_Id is (Left, Right, High, Low, Near, Far);
type Plane_array is array (Plane_Id) of openGL.Geometry_3d.Plane;
procedure normalise (Planes : in out Plane_array);
end openGL.Frustum;