mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-18 04:21:16 +02:00
start default to undef
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
use <_impl/_pp_poisson2.scad>
|
||||
|
||||
function pp_poisson2(size, r, start, k = 30, seed = undef, history = false) =
|
||||
function pp_poisson2(size, r, start = undef, k = 30, seed = undef, history = false) =
|
||||
let(
|
||||
s = _pp_poisson(sampling(size, r, start, k), is_undef(seed) ? floor(rands(0, 1000, 1)[0]) : seed),
|
||||
samples = [
|
||||
|
@@ -1,6 +1,6 @@
|
||||
use <_impl/_pp_poisson3.scad>
|
||||
|
||||
function pp_poisson3(size, r, start, k = 30, seed = undef, history = false) =
|
||||
function pp_poisson3(size, r, start = undef, k = 30, seed = undef, history = false) =
|
||||
let(
|
||||
s = _pp_poisson(sampling(size, r, start, k), is_undef(seed) ? floor(rands(0, 1000, 1)[0]) : seed),
|
||||
samples = [
|
||||
|
Reference in New Issue
Block a user