1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-10-01 16:57:08 +02:00
Files
dotSCAD/docs/lib2-fibseq.md
Justin Lin 2e271bab3c add doc
2019-10-04 13:29:50 +08:00

17 lines
299 B
Markdown

# fibseq
Generate a Fibonacci sequence.
**Since:**: 2.1
## Parameters
- `from` : The nth Fibonacci number you wanna start from.
- `to` : The nth Fibonacci number you wanna go to.
## Examples
include <util/fibseq.scad>;
echo(fibseq(1, 10)); // ECHO: [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]