From 330b41656bed1c41a5c30216192319ff5d35c0aa Mon Sep 17 00:00:00 2001 From: Andrew Plumb Date: Mon, 13 Apr 2015 19:24:51 -0400 Subject: [PATCH] Removed deprecated assign statement --- examples/Old/example023.scad | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/Old/example023.scad b/examples/Old/example023.scad index 16b0619c..3b551f3f 100644 --- a/examples/Old/example023.scad +++ b/examples/Old/example023.scad @@ -11,11 +11,13 @@ y_shift=thisFont[0][1]; hours=["one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve"]; module clock_hour_words(word_offset=20.0,word_height=2.0) { - for(i=[0:(len(hours)-1)]) assign( hourHandAngle=(i+1)*360/len(hours), theseIndicies=search(hours[i],thisFont[2],1,1) ) { + for(i=[0:(len(hours)-1)]) { + hourHandAngle=(i+1)*360/len(hours); + theseIndicies=search(hours[i],thisFont[2],1,1); rotate(90-hourHandAngle) translate([word_offset,0]) - for( j=[0:(len(theseIndicies)-1)] ) translate([j*x_shift,-y_shift/2]) { - linear_extrude(height=word_height) polygon(points=thisFont[2][theseIndicies[j]][6][0],paths=thisFont[2][theseIndicies[j]][6][1]); - } + for( j=[0:(len(theseIndicies)-1)] ) translate([j*x_shift,-y_shift/2]) { + linear_extrude(height=word_height) polygon(points=thisFont[2][theseIndicies[j]][6][0],paths=thisFont[2][theseIndicies[j]][6][1]); + } } }