package tree_layout

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

Algorithms to layout trees in a pretty manner.

type pos = {
  1. x : float;
  2. y : float;
}

A position (or a size).

module type S = sig ... end

The output signature for a certain layout engine.

module type TREE = sig ... end

The input signature for Make

module Make (G : TREE) : S with type t := G.t and type vertex := G.V.t

Define layout engines.