limit

limit
var

limit

limit(L)

       Returns the bounding box of the line L.
Example:
limit[1,12]; returns 1,2,3,10,11,12.

limit limit

limit(x,x1,x2)limit(x3,x4)

       Returns a value varying between x3 and x4 when x varies between x1 and x2.
Example:
limit(0.25,0,1)limit(-100,100) returns -50.

limit var

limit var("nn")

       Returns the bounding box of variable named nn considered as a 3D line.
Example:
x=arc 100,0,2*PI,5);limit var("nn"); returns (-100,-100,0,100,100,0)