package graphv_core_lib

  1. Overview
  2. Docs
type t = {
  1. xform : Matrix.t;
  2. mutable extent : float * float;
  3. mutable radius : float;
  4. mutable feather : float;
  5. mutable inner_color : Color.t;
  6. mutable outer_color : Color.t;
  7. mutable image : int;
}
val create : unit -> t
val copy : t -> t
val set_color : t -> Color.t -> unit