Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. let get_outline_contents outline =
  2. let oc = Ftlow.get_outline_contents outline.cont in
  3. { n_contours= oc.Ftlow.n_contours;
  4. n_points = oc.Ftlow.n_points;
  5. points =
  6. Array.map
  7. (fun x, y ->
  8. float_of_intfrac6 x, float_of_intfrac6 y)
  9. oc.Ftlow.points;
  10. tags = oc.Ftlow.tags;
  11. contours = oc.Ftlow.contours; };;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement