package oplot

  1. Overview
  2. Docs

Source file points.ml

1
2
3
4
5
6
7
8
9
10
module Point2 = struct
  type t = { x : float; y : float }
end

module Point3 = struct
  type t = { x : float; y : float; z : float }
end

type point = Point2.t
type point3 = Point3.t