summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AutoVisual/IGPPentagon.pde12
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();
}
}