package mlpost

  1. Overview
  2. Docs
type matrix = Cairo.matrix = {
  1. mutable xx : float;
  2. mutable yx : float;
  3. mutable xy : float;
  4. mutable yy : float;
  5. mutable x0 : float;
  6. mutable y0 : float;
}
type point = {
  1. x : float;
  2. y : float;
}