Module Mlpost.Num
Abstract numeric values
Conversion functions
val bp : float -> t
The base unit in Mlpost is bp.
val pt : float -> t
pt are PostScript points. This is the same unit as the pt unit in TeX
val em : float -> t
the width of an "m"
val ex : float -> t
the height of an "x"
Useful operations on Nums
val addn : t -> t -> t
val subn : t -> t -> t
val multn : t -> t -> t
val multf : float -> t -> t
val divf : t -> float -> t
val neg : t -> t
val divn : t -> t -> t
val maxn : t -> t -> t
val minn : t -> t -> t
val gmean : t -> t -> t
the geometric mean of two nums : sqrt(a * a + b * b)
Infix operators
module Infix : sig ... end
Useful constants and functions
type scale
= float -> t
module Scale : sig ... end