Functions | |
void | EnableAnimate (counter bVal) |
Sets or resets animation mode. | |
counter | GetMouseMode () |
Return the currently active mouse mode. | |
list | GetMouseSens () |
Returns the current mouse sensitivity values. | |
list | GetMouseValue (counter iMode, counter iButton) |
Get all mouse values for a particular mode and button. | |
scalar | GetTime () |
Get time with millisecond precision. | |
scalar | Mouse (counter Mode, counter Button, counter Axis) |
This function returns the value of one of the internal mouse mode variables. | |
scalar | Scalar (any X) |
Tries to cast the element passed to a scalar. | |
void | SetAnimateTimeStep (scalar dStep) |
Sets the time step in milliseconds between executions of the script in animation mode. | |
void | SetEvalPrec (counter Prec) |
Set the number of decimal digits used when evaluating mathematical functions internally. | |
void | SetMouseMode (counter iMode) |
Sets the current mouse mode. | |
void | SetMouseSens (scalar dRot, scalar dTrans) |
Set mouse sensitivity. | |
void | SetMouseValue (counter iMode, counter iButton, multivector vVal) |
Sets the value of the mouse variables for a particular mouse mode and mouse button. | |
void | SetMouseValue (counter iMode, counter iButton, list lVal) |
Sets the value of the mouse variables for a particular mouse mode and mouse button. | |
void | SetTextPrec (counter Prec) |
Set the number of decimal digits used when printing scalar values. | |
void | SetVisPrec (counter Prec) |
Set the number of decimal digits used when doing visualization calculations. | |
counter | Size (vertexlist L) |
Returns the number of elements in a vertex list. | |
counter | Size (list L) |
Returns the number of elements in a list. | |
counter | Size (string S) |
Returns the number of characters in a string. | |
string | Str (any_type X) |
Obsolete name. Use String() instead. | |
string | String (list lList, string sDel) |
Concatenates string representations of list elements with the delimiter symbol sDel. | |
string | String (any_type X) |
Creates string representation of parameter. | |
string | Type (any_type X) |
Returns a string identifying the type of the parameter. |
|
Sets or resets animation mode.
|
|
Return the currently active mouse mode.
|
|
Returns the current mouse sensitivity values.
|
|
Get all mouse values for a particular mode and button.
|
|
Get time with millisecond precision.
|
|
This function returns the value of one of the internal mouse mode variables.
|
|
Tries to cast the element passed to a scalar.
|
|
Sets the time step in milliseconds between executions of the script in animation mode.
|
|
Set the number of decimal digits used when evaluating mathematical functions internally.
|
|
Sets the current mouse mode.
|
|
Set mouse sensitivity.
|
|
Sets the value of the mouse variables for a particular mouse mode and mouse button.
|
|
Sets the value of the mouse variables for a particular mouse mode and mouse button.
|
|
Set the number of decimal digits used when printing scalar values.
A = 1.2345678; SetTextPrec(1); ?A; SetTextPrec(2); ?A; SetTextPrec(3); ?A; SetTextPrec(4); ?A; This produces the output A = 1.2 A = 1.23 A = 1.235 A = 1.2346 |
|
Set the number of decimal digits used when doing visualization calculations.
|
|
Returns the number of elements in a vertex list.
Size applied to a scalar val is equivalent to ![]() |
|
Returns the number of elements in a list.
?L = [1, [2,3], 4]; ?Size(L); This code produces the following output. L = [1, [2, 3], 4] Constant = 3 Size applied to a scalar val is equivalent to ![]() |
|
Returns the number of characters in a string.
Size applied to a scalar val is equivalent to ![]() |
|
Obsolete name. Use String() instead.
|
|
Concatenates string representations of list elements with the delimiter symbol sDel.
produces the output
lList (3)=
|
|
Creates string representation of parameter.
?"List " + [1,2] has the output Constant = [List 1, List 2] . To obtain the desired result you can write ?"List " + Str([1,2]) which returns List [1, 2] .For example, ?L = [1, 2, 3]; ?"List = " + L; ?"List = " + String(L); produces the output |
|
Returns a string identifying the type of the parameter.
?L = [1, [2,3], 4]; ?Type(L); produces the output L = [1, [2, 3], 4] List |