mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-16 21:58:26 +01:00
15 lines
280 B
Markdown
15 lines
280 B
Markdown
# parse_number
|
|
|
|
Parses the string argument as an number.
|
|
|
|
## Parameters
|
|
|
|
- `t` : A string containing the number representation to be parsed.
|
|
|
|
## Examples
|
|
|
|
use <util/parse_number.scad>
|
|
|
|
assert((parse_number("10") + 1) == 11);
|
|
assert((parse_number("-1.1") + 1) == -0.1);
|