Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Meyer <florianfelix@web.de>2010-09-12 05:18:33 +0400
committerFlorian Meyer <florianfelix@web.de>2010-09-12 05:18:33 +0400
commit24fe650108cd7f63db843e42c66a89c5b979eae1 (patch)
tree500d039d7b923d68030475f5aae30ddf5c4a9b24 /add_curve_aceous_galore.py
parentf8172a0203143fd7e34f423378636354c0383c36 (diff)
== Curve Galore ==
- forgot to remove debug print
Diffstat (limited to 'add_curve_aceous_galore.py')
-rw-r--r--add_curve_aceous_galore.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/add_curve_aceous_galore.py b/add_curve_aceous_galore.py
index 3ddb8d0a..67c032a0 100644
--- a/add_curve_aceous_galore.py
+++ b/add_curve_aceous_galore.py
@@ -100,7 +100,6 @@ def vTurbNoise(x,y,z, iScale=0.25, Size=1.0, Depth=6, Hard=0, Basis=0, Seed=0):
sn = 0.001
rand = randnum(-100,100,Seed)
if Basis == 9: Basis = 14
- print('x', x, 'y' ,y ,'z' ,z ,'size', Size)
vTurb = Noise.turbulence_vector((x/Size+rand, y/Size+rand, z/Size+rand), Depth, Hard, Basis)
tx = vTurb[0]*iScale
ty = vTurb[1]*iScale