module IntAGeom: sig
.. end
Analytic Geometry with ints
Read the
Wikipedia article about
Analytic Geometry
Types
type
point2d = int * int
(x, y)
type
point3d = int * int * int
(x, y, z)
type
vector2d = int * int
(x, y)
type
vector3d = int * int * int
(x, y, z)
type
rad_angle = int
radian
type
deg_angle = int
degree
Modules
module Angle: sig
.. end
module Point2d: sig
.. end
module Point3d: sig
.. end
module Vector2d: sig
.. end
module Vector3d: sig
.. end
module Curves2d: sig
.. end
module Curves3d: sig
.. end