summaryrefslogtreecommitdiffstats
path: root/AutoVisual
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2016-01-02 20:26:40 +0100
committerDavid Runge <dave@sleepmap.de>2016-01-02 20:26:40 +0100
commitd03513b9b223864c89916dd5edff3c97e571472e (patch)
treecbc77883ef8e616318dc36c8e788cb572ff79e97 /AutoVisual
parent24bd06ab618261ec16712c68fbd4edbb8e988416 (diff)
downloadprocessing-sketchbook-d03513b9b223864c89916dd5edff3c97e571472e.tar.gz
processing-sketchbook-d03513b9b223864c89916dd5edff3c97e571472e.tar.bz2
processing-sketchbook-d03513b9b223864c89916dd5edff3c97e571472e.tar.xz
processing-sketchbook-d03513b9b223864c89916dd5edff3c97e571472e.zip
AutoVisual/IGPPentagon.pde: Removing direct call to stroke().
Diffstat (limited to 'AutoVisual')
-rw-r--r--AutoVisual/IGPPentagon.pde2
1 files changed, 0 insertions, 2 deletions
diff --git a/AutoVisual/IGPPentagon.pde b/AutoVisual/IGPPentagon.pde
index d193b2f..3cfa4f0 100644
--- a/AutoVisual/IGPPentagon.pde
+++ b/AutoVisual/IGPPentagon.pde
@@ -16,7 +16,6 @@ class IGPPentagon extends IGPFamily{
}
void createInnerPentagon(){
- 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);
@@ -32,7 +31,6 @@ class IGPPentagon extends IGPFamily{
}
void createDividingLines(){
- stroke(0.0, 0.66, 0.0, 0.4);
createLine(mid, constructionCircleCenters.get(0));
createLine(mid, constructionCircleCenters.get(1));
createLine(mid, constructionCircleCenters.get(2));