diff options
author | David Runge <dave@sleepmap.de> | 2016-01-08 03:32:23 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-01-08 03:32:23 +0100 |
commit | ea1a1b34921f3a19c61e8f953e28b17eaa0cd4ec (patch) | |
tree | dd166b5044f551a31d0e2ff78cb05719755589fb | |
parent | 04b955f1b3592c8d5b3f0b4dd8fda48a0512531f (diff) | |
download | processing-sketchbook-ea1a1b34921f3a19c61e8f953e28b17eaa0cd4ec.tar.gz processing-sketchbook-ea1a1b34921f3a19c61e8f953e28b17eaa0cd4ec.tar.bz2 processing-sketchbook-ea1a1b34921f3a19c61e8f953e28b17eaa0cd4ec.tar.xz processing-sketchbook-ea1a1b34921f3a19c61e8f953e28b17eaa0cd4ec.zip |
AutoVisual/AutoVisual.pde: Updating to latest finished class.
-rw-r--r-- | AutoVisual/AutoVisual.pde | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/AutoVisual/AutoVisual.pde b/AutoVisual/AutoVisual.pde index 2b04f5f..8776493 100644 --- a/AutoVisual/AutoVisual.pde +++ b/AutoVisual/AutoVisual.pde @@ -3,6 +3,7 @@ IGPHexagon hexagon; IGPPentagon pentagon; IGPTheGreatMosqueOfCordoba cordoba; IGPTheGreatMosqueOfKairouan kairouan; +IGPMustansiriyaMadrasa madrasa; float midx; float midy; @@ -20,19 +21,23 @@ void setup() { pentagon = new IGPPentagon(midx, midy, circleSize); cordoba = new IGPTheGreatMosqueOfCordoba(midx, midy, circleSize); kairouan = new IGPTheGreatMosqueOfKairouan(midx, midy, circleSize); + madrasa = new IGPMustansiriyaMadrasa(midx, midy, circleSize); } void draw() { background(0); noFill(); -// square.displayConstructionLines(); -// hexagon.displayConstructionLines(); // pentagon.displayConstructionLines(); +// square.displayConstructionLines(); // cordoba.display(); // cordoba.displayConstructionLines(); - kairouan.display(); - kairouan.displayConstructionLines(); +// kairouan.display(); +// kairouan.displayConstructionLines(); + +// hexagon.displayConstructionLines(); + madrasa.display(); + madrasa.displayConstructionLines(); } |