kurtosis_weibull SciMax Toolbox label_alignment

SciMax Toolbox >> label

label

Maxima Graphic object

Calling Sequence

label ([string,x,y],...)
label([string,x,y,z],...)

Description

Writes labels in 2D and 3D.

This object is affected by the following graphic options: label_alignment, label_orientation and color.

2D

label([string,x,y]) writes the string at point [x,y].

Example:

(%i1) load(draw)$
(%i2) draw2d(yrange = [0.1,1.4],
             color = "red",
             label(["Label in red",0,0.3]),
             color = "#0000ff",
             label(["Label in blue",0,0.6]),
             color = "light-blue",
             label(["Label in light-blue",0,0.9],
                   ["Another ligght-blue",0,1.2])  )$

3D

label([string,x,y,z]) writes the string at point [x,y,z].

Example:

(%i1) load(draw)$
(%i2) draw3d(explicit(exp(sin(x)+cos(x^2)),x,-3,3,y,-3,3),
             color = red,
             label(["UP 1",-2,0,3], ["UP 2",1.5,0,4]),
             color = blue,
             label(["DOWN 1",2,0,-3]) )$
kurtosis_weibull SciMax Toolbox label_alignment