/usr/lib/ocaml/lablgl/gluTess.mli is in liblablgl-ocaml-dev 1:1.05-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | (* $Id: gluTess.mli,v 1.8 2004-07-13 09:44:03 garrigue Exp $ *)
(* Code contributed by Jon Harrop *)
type winding_rule = [`odd|`nonzero|`positive|`negative|`abs_geq_two]
type vertices = (float * float * float) list
val tesselate :
?winding:winding_rule -> ?boundary_only:bool -> ?tolerance:float ->
vertices list -> unit
(** Render directly to current screen.
Each [vertices] in the input is a contour in the single polygon
represented by [vertices list]. *)
type triangles =
{ singles: vertices list; strips: vertices list; fans: vertices list }
val tesselate_and_return :
?winding:winding_rule -> ?tolerance:float -> vertices list -> triangles
(** Return 3 lists of triangles instead of rendering directly *)
|