diff options
author | David Runge <dave@sleepmap.de> | 2016-01-04 21:48:32 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-01-04 21:48:32 +0100 |
commit | 53cc9939a86946df6a9065659e2e47e70dd48c6a (patch) | |
tree | 90aedb543b682e681610a6e0a150122eca5e39cc | |
parent | 24b14716a3ddadc15bfc4f2675990cceedf50e03 (diff) | |
download | processing-sketchbook-53cc9939a86946df6a9065659e2e47e70dd48c6a.tar.gz processing-sketchbook-53cc9939a86946df6a9065659e2e47e70dd48c6a.tar.bz2 processing-sketchbook-53cc9939a86946df6a9065659e2e47e70dd48c6a.tar.xz processing-sketchbook-53cc9939a86946df6a9065659e2e47e70dd48c6a.zip |
AutoVisual/AutoVisual.pde: Cleaning up after Kairouan. Previous (finished) classes are commented.
-rw-r--r-- | AutoVisual/AutoVisual.pde | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/AutoVisual/AutoVisual.pde b/AutoVisual/AutoVisual.pde index 9db7ba9..84b733b 100644 --- a/AutoVisual/AutoVisual.pde +++ b/AutoVisual/AutoVisual.pde @@ -1,9 +1,12 @@ IGPSquare square; IGPHexagon hexagon; IGPPentagon pentagon; +IGPTheGreatMosqueOfCordoba cordoba; +IGPTheGreatMosqueOfKairouan kairouan; + float midx; float midy; -float circleSize = 256; +float circleSize = 512; void setup() { size(640, 360); @@ -13,15 +16,21 @@ void setup() { // square = new IGPSquare(midx, midy, circleSize, 16); hexagon = new IGPHexagon(midx, midy, circleSize); pentagon = new IGPPentagon(midx, midy, circleSize); + cordoba = new IGPTheGreatMosqueOfCordoba(midx, midy, circleSize); + kairouan = new IGPTheGreatMosqueOfKairouan(midx, midy, circleSize); } void draw() { background(0); noFill(); - square.displayConstructionLines(); - square.display(); - hexagon.displayConstructionLines(); - hexagon.display(); - pentagon.displayConstructionLines(); - pentagon.display(); + +// square.displayConstructionLines(); +// hexagon.displayConstructionLines(); +// pentagon.displayConstructionLines(); + +// cordoba.display(); +// cordoba.displayConstructionLines(); + kairouan.display(); + kairouan.displayConstructionLines(); + } |