73 KiB
73 KiB
title, excerpt, layout
| title | excerpt | layout |
|---|---|---|
| ln | Compute the natural logarithm of the number. | manual |
Compute the natural logarithm of the number.
ln(num: number) -> number
Tags
math
Arguments
| Name | Type | Description | Required |
|---|---|---|---|
num |
number |
Yes |
Returns
number
Examples
exampleSketch = startSketchOn("XZ")
|> startProfileAt([0, 0], %)
|> line([ln(100), 15], %)
|> line([5, -6], %)
|> line([-10, -10], %)
|> close(%)
example = extrude(5, exampleSketch)