package picasso

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Module for 3D model generation of abstract elements

type t

Type of 3D scenes

val create : abciss:string -> ordinate:string -> height:string -> unit -> t

Initalizes an empty 3D scenes.

val add : t -> (Colors.t * Drawable.t) -> t

Registers an abstract element into a scene

val add_l : t -> (Colors.t * Drawable.t) list -> t

Registers a list of element into a scene. add_l r l is equivalent to calling add successively on the elements of l