This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Nightly required - get link from the bottom of this page (e.g. https://openframeworks.cc/ci_server/versions/nightly/of_v20190324_linuxarmv7l_nightly.tar.gz) | |
https://openframeworks.cc/download/ | |
Download OF and unpack: | |
wget https://openframeworks.cc/ci_server/versions/nightly/of_v20190324_linuxarmv7l_nightly.tar.gz | |
tar -zxvf of_v20190324_linuxarmv7l_nightly.tar.gz | |
mv of_v20190324_linuxarmv7l_nightly openFrameworks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE SUB redrawLine (n%) | |
DECLARE SUB drawDots (ntot%) | |
DECLARE SUB drawLines (ntot%) | |
CLS | |
SCREEN 12 '7 is white, 8 is gray, screen 7 is 320x200, screen 9 is 640x350, screen 12 is 640x480 | |
ntot% = 55 | |
DIM SHARED m(ntot%, 3) 'm(numberDot, [x, y, connected Dot, distance]) | |
DIM SHARED bound(1) | |
bound(0) = 640 |