Module IntAGeom.Point3d

module Point3d: sig .. end

type t = IntAGeom.point3d 
(x, y, z)
val of_point2d : ?z:int -> IntAGeom.point2d -> t
val sq_dist : t -> t -> int
Square of the distance between two point
val midpoint : t -> t -> t
Point3d.midpoint a b returns the middle point of the line segment ab (wp)
val rand : t -> t -> t
Point3d.rand a b returns a point with coords between those of a and b
module Infix: sig .. end