Values¶
Info
All these functions have an alias starting with an uppercase character.
In other words, (int 42)
and (Int 42)
are both valid and represent the same value.
bytes¶
Represents the raw bytes value of a string.
1 |
|
color¶
Represents an RGBA color where each component is within the [0, 255] range.
1 |
|
context-var¶
Creates a contextual variable with the given name.
Note
The uppercase alias for this function is (ContextVar)
.
1 |
|
float¶
Represents a floating point number.
1 |
|
float2¶
Represents a vector of 2 floating point numbers.
1 |
|
float3¶
Represents a vector of 3 floating point numbers.
1 |
|
float4¶
Represents a vector of 4 floating point numbers.
1 |
|
int¶
Represents a signed integer.
1 |
|
int2¶
Represents a vector of 2 signed integers.
1 |
|
int3¶
Represents a vector of 3 signed integers.
1 |
|
int4¶
Represents a vector of 4 signed integers.
1 |
|
string¶
Represents a string.
1 |
|