package shapefile

  1. Overview
  2. Docs

Types for 2D (x, y) shapes

type point = {
  1. x : float;
  2. y : float;
}
type bbox = {
  1. xmin : float;
  2. xmax : float;
  3. ymin : float;
  4. ymax : float;
}
val print_bbox : bbox -> unit