1
0
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:
Justin Lin
2022-07-02 16:46:14 +08:00
parent c551e96352
commit 6df0170d81
2 changed files with 2 additions and 2 deletions

View File

@@ -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 = [

View File

@@ -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 = [