package shapefile

  1. Overview
  2. Docs

Types for 2D + value (x, y, m) shapes

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