Add initial prototype.

This commit is contained in:
Rod Kay
2022-07-31 17:34:54 +10:00
commit 54a53b2ac0
1421 changed files with 358874 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
with
openGL;
package gel.Conversions
is
function to_GL (Self : in math.Real) return opengl.Real;
function to_GL (Self : in math.Vector_3) return opengl.Vector_3;
function to_GL (Self : in math.Matrix_3x3) return opengl.Matrix_3x3;
function to_GL (Self : in math.Matrix_4x4) return opengl.Matrix_4x4;
function to_GL (Self : in geometry_3d.bounding_Box) return opengl.Bounds;
function to_Math (Self : in opengl.Vector_3) return math.Vector_3;
end gel.Conversions;