package mesh

  1. Overview
  2. Docs
module F : sig ... end
module C : sig ... end
val draw : ?width:int -> ?height:int -> ?color:Graphics.color -> ?points:bool -> ?point_idx:(int -> 'b) -> ?triangle_idx:(int -> 'c) -> ?voronoi:'d -> ?point_marker_color:Graphics.color -> ?segments:bool -> 'a Mesh.t -> unit
val init_graph : int -> int -> unit
val hold_graph : unit -> unit
val display : ?width:int -> ?height:int -> ?color:Graphics.color -> ?points:bool -> ?point_idx:(int -> 'a) -> ?triangle_idx:(int -> 'b) -> ?voronoi:'c -> ?point_marker_color:Graphics.color -> ?segments:bool -> 'd Mesh.t -> unit
val level_curves : ?width:int -> ?height:int -> ?boundary:(int -> Graphics.color option) -> 'a Mesh.t -> 'a Mesh.vec -> ?level_eq:(float -> float -> bool) -> (float * Graphics.color) list -> unit
val display_level_curves : ?width:int -> ?height:int -> ?boundary:(int -> Graphics.color option) -> 'a Mesh.t -> 'a Mesh.vec -> ?level_eq:(float -> float -> bool) -> (float * Graphics.color) list -> unit
val super_level : ?width:int -> ?height:int -> ?boundary:(int -> Graphics.color option) -> 'a Mesh.t -> 'a Mesh.vec -> float -> Graphics.color -> unit
val sub_level : ?width:int -> ?height:int -> ?boundary:(int -> Graphics.color option) -> 'a Mesh.t -> 'a Mesh.vec -> float -> Graphics.color -> unit