diff options
author | David Runge <dave@sleepmap.de> | 2016-01-04 14:40:06 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-01-04 14:40:06 +0100 |
commit | b832291263537a5e6e196c387e6e73b9e09d11ef (patch) | |
tree | 122822d91728e0c787f6a9a0775f44eee508aac6 /AutoVisual | |
parent | 8b4f7ef465921ce620df31b005c870b4deb3103a (diff) | |
download | processing-sketchbook-b832291263537a5e6e196c387e6e73b9e09d11ef.tar.gz processing-sketchbook-b832291263537a5e6e196c387e6e73b9e09d11ef.tar.bz2 processing-sketchbook-b832291263537a5e6e196c387e6e73b9e09d11ef.tar.xz processing-sketchbook-b832291263537a5e6e196c387e6e73b9e09d11ef.zip |
AutoVisual/IGPFamily.pde: Adding a redish color code to the creation of low level construction lines.
Diffstat (limited to 'AutoVisual')
-rw-r--r-- | AutoVisual/IGPFamily.pde | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/AutoVisual/IGPFamily.pde b/AutoVisual/IGPFamily.pde index 7b97c6f..eb2ea39 100644 --- a/AutoVisual/IGPFamily.pde +++ b/AutoVisual/IGPFamily.pde @@ -261,6 +261,8 @@ class IGPFamily { } void displayConstructionLines() { + setStrokeColor(new Float[] {0.8, 0.4, 0.4, 1.0}); + setFillColor(new Float[] {0.0, 0.0, 0.0, 0.0}); createAlphaCircle(); createConstructionCircles(); createVerticalHorizontalConstructionLines(); |