1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-01 20:40:28 +02:00

update docs

This commit is contained in:
Justin Lin
2022-07-10 11:52:01 +08:00
parent 0c1e2049e2
commit dd63a9574e
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ Perform poisson sampling over a rectangle area. An implementation of [Fast Poiss
- `size` : The size `[x, y]` of the rectangle. - `size` : The size `[x, y]` of the rectangle.
- `r` : The minimum distance between samples. - `r` : The minimum distance between samples.
- `start` : Optional. The first start point. - `start` : Optional. The initial point(s).
- `k` : Default to 30. The `k` constant of [Fast Poisson Disk Sampling in Arbitrary Dimensions](https://www.cs.ubc.ca/~rbridson/docs/bridson-siggraph07-poissondisk.pdf). - `k` : Default to 30. The `k` constant of [Fast Poisson Disk Sampling in Arbitrary Dimensions](https://www.cs.ubc.ca/~rbridson/docs/bridson-siggraph07-poissondisk.pdf).
- `seed` : Optional. Seed value for random number generator for repeatable results. - `seed` : Optional. Seed value for random number generator for repeatable results.

View File

@@ -8,7 +8,7 @@ Perform poisson sampling over a cube space. An 3D implementation of [Fast Poisso
- `size` : The size `[x, y]` of the rectangle. - `size` : The size `[x, y]` of the rectangle.
- `r` : The minimum distance between samples. - `r` : The minimum distance between samples.
- `start` : Optional. The first start point. - `start` : Optional. The initial point(s).
- `k` : Default to 30. The `k` constant of [Fast Poisson Disk Sampling in Arbitrary Dimensions](https://www.cs.ubc.ca/~rbridson/docs/bridson-siggraph07-poissondisk.pdf). - `k` : Default to 30. The `k` constant of [Fast Poisson Disk Sampling in Arbitrary Dimensions](https://www.cs.ubc.ca/~rbridson/docs/bridson-siggraph07-poissondisk.pdf).
- `seed` : Optional. Seed value for random number generator for repeatable results. - `seed` : Optional. Seed value for random number generator for repeatable results.