mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-18 06:38:14 +01:00
move
This commit is contained in:
parent
02a6c469e8
commit
4c2fe1e3d5
@ -1,5 +1,7 @@
|
||||
use <experimental/_impl/_pnoise_comm.scad>;
|
||||
|
||||
function _pnoise1_grad1(hashvalue, x) = (hashvalue % 2 == 0) ? x : -x;
|
||||
|
||||
function _pnoise1(x, seed) =
|
||||
let(
|
||||
xi = floor(x),
|
||||
|
@ -4,6 +4,4 @@ function _pnoise_fade(t) = pow(t, 3) * (t * (t * 6 - 15) + 10);
|
||||
|
||||
function _pnoise_lerp(a, b, t) = a + t * (b - a);
|
||||
|
||||
function _pnoise_lookup_poise_table(i) = _pnoise_table[i % 256];
|
||||
|
||||
function _pnoise1_grad1(hashvalue, x) = (hashvalue % 2 == 0) ? x : -x;
|
||||
function _pnoise_lookup_poise_table(i) = _pnoise_table[i % 256];
|
Loading…
x
Reference in New Issue
Block a user