diff options
author | David Runge <dave@sleepmap.de> | 2015-12-30 20:01:02 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-12-30 20:01:02 +0100 |
commit | 887a2b02cec9c2630437e862393176b06de0f79b (patch) | |
tree | 0e5502c3e582d68ff6a44c5ce77ee1b3a80784cf /AutoVisual | |
parent | e7512f5837d5cb26af1196a345c36fb169d5c025 (diff) | |
download | processing-sketchbook-887a2b02cec9c2630437e862393176b06de0f79b.tar.gz processing-sketchbook-887a2b02cec9c2630437e862393176b06de0f79b.tar.bz2 processing-sketchbook-887a2b02cec9c2630437e862393176b06de0f79b.tar.xz processing-sketchbook-887a2b02cec9c2630437e862393176b06de0f79b.zip |
AutoVisual/IGPPentagon.pde: Retabbing document.
Diffstat (limited to 'AutoVisual')
-rw-r--r-- | AutoVisual/IGPPentagon.pde | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/AutoVisual/IGPPentagon.pde b/AutoVisual/IGPPentagon.pde index 6dd4b1a..881adca 100644 --- a/AutoVisual/IGPPentagon.pde +++ b/AutoVisual/IGPPentagon.pde @@ -7,7 +7,7 @@ class IGPPentagon extends IGPFamily{ } void setConstructionCircleCenters(){ - constructionCircleCenters = new ArrayList <PVector> (5); + constructionCircleCenters = new ArrayList <PVector> (5); constructionCircleCenters.add(getVectorOnAlphaCircle(342)); constructionCircleCenters.add(getVectorOnAlphaCircle(54)); constructionCircleCenters.add(getVectorOnAlphaCircle(126)); @@ -16,8 +16,8 @@ class IGPPentagon extends IGPFamily{ } void createInnerPentagon(){ - stroke(0.0, 0.0, 0.66, 0.4); - beginShape(LINES); + stroke(0.0, 0.0, 0.66, 0.4); + beginShape(LINES); vertex(constructionCircleCenters.get(0).x, constructionCircleCenters.get(0).y); vertex(constructionCircleCenters.get(1).x, constructionCircleCenters.get(1).y); vertex(constructionCircleCenters.get(1).x, constructionCircleCenters.get(1).y); @@ -28,15 +28,15 @@ class IGPPentagon extends IGPFamily{ vertex(constructionCircleCenters.get(4).x, constructionCircleCenters.get(4).y); vertex(constructionCircleCenters.get(4).x, constructionCircleCenters.get(4).y); vertex(constructionCircleCenters.get(0).x, constructionCircleCenters.get(0).y); - endShape(); + endShape(); } void display() { super.display(); - createInnerPentagon(); + createInnerPentagon(); } void displayConstructionLines(){ super.displayConstructionLines(); - createConstructionCircles(); + createConstructionCircles(); } } |