From 887a2b02cec9c2630437e862393176b06de0f79b Mon Sep 17 00:00:00 2001 From: David Runge Date: Wed, 30 Dec 2015 20:01:02 +0100 Subject: AutoVisual/IGPPentagon.pde: Retabbing document. --- AutoVisual/IGPPentagon.pde | 12 ++++++------ 1 file 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 (5); + constructionCircleCenters = new ArrayList (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(); } } -- cgit v1.2.3-54-g00ecf