├── L3D ├── examples │ ├── Blink │ │ ├── Blink.pde │ │ └── sketch.properties │ ├── Cubes │ │ ├── Cubes.pde │ │ └── sketch.properties │ ├── Graphs │ │ ├── Graphs.pde │ │ └── sketch.properties │ ├── Line │ │ └── Line.pde │ ├── Musical_Landscape │ │ ├── Musical_Landscape.pde │ │ └── sketch.properties │ ├── SpacePainter │ │ ├── SpacePainter.pde │ │ ├── UI.pde │ │ ├── UI_Elements.pde │ │ ├── data │ │ │ ├── QuicksandBold-Regular-48.vlw │ │ │ ├── clear.png │ │ │ ├── down.png │ │ │ ├── front-rotated.png │ │ │ ├── front.png │ │ │ ├── logo.png │ │ │ ├── open.png │ │ │ ├── save.png │ │ │ ├── up.ai │ │ │ └── up.png │ │ └── sketch.properties │ ├── Spheres │ │ └── Spheres.pde │ └── Text │ │ ├── Text.pde │ │ └── sketch.properties ├── library.properties ├── library │ ├── L3D.jar │ ├── commons-codec-1.10.jar │ ├── joda-time-2.4.jar │ ├── library │ │ ├── export.txt │ │ ├── jssc.jar │ │ ├── jssc.txt │ │ ├── linux32 │ │ │ └── libjSSC-2.8.so │ │ ├── linux64 │ │ │ └── libjSSC-2.8.so │ │ ├── macosx │ │ │ └── libjSSC-2.8.jnilib │ │ ├── serial.jar │ │ ├── windows32 │ │ │ └── jSSC-2.8.dll │ │ └── windows64 │ │ │ └── jSSC-2.8.dll │ └── org.json.jar ├── reference │ ├── L3D │ │ ├── L3D.html │ │ ├── L3D_UDP.html │ │ ├── Spark.html │ │ ├── Streaming.html │ │ ├── Text.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-tree.html │ ├── package-list │ ├── resources │ │ └── inherit.gif │ └── stylesheet.css └── src │ └── L3D │ ├── L3D.java │ ├── L3D_UDP.java │ ├── Spark.java │ ├── Streaming.java │ └── Text.java └── readme.md /L3D/examples/Blink/Blink.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Blink/Blink.pde -------------------------------------------------------------------------------- /L3D/examples/Blink/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Blink/sketch.properties -------------------------------------------------------------------------------- /L3D/examples/Cubes/Cubes.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Cubes/Cubes.pde -------------------------------------------------------------------------------- /L3D/examples/Cubes/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Cubes/sketch.properties -------------------------------------------------------------------------------- /L3D/examples/Graphs/Graphs.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Graphs/Graphs.pde -------------------------------------------------------------------------------- /L3D/examples/Graphs/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Graphs/sketch.properties -------------------------------------------------------------------------------- /L3D/examples/Line/Line.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Line/Line.pde -------------------------------------------------------------------------------- /L3D/examples/Musical_Landscape/Musical_Landscape.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Musical_Landscape/Musical_Landscape.pde -------------------------------------------------------------------------------- /L3D/examples/Musical_Landscape/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Musical_Landscape/sketch.properties -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/SpacePainter.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/SpacePainter.pde -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/UI.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/UI.pde -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/UI_Elements.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/UI_Elements.pde -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/QuicksandBold-Regular-48.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/QuicksandBold-Regular-48.vlw -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/clear.png -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/down.png -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/front-rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/front-rotated.png -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/front.png -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/logo.png -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/open.png -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/save.png -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/up.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/up.ai -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/data/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/SpacePainter/data/up.png -------------------------------------------------------------------------------- /L3D/examples/SpacePainter/sketch.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /L3D/examples/Spheres/Spheres.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Spheres/Spheres.pde -------------------------------------------------------------------------------- /L3D/examples/Text/Text.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Text/Text.pde -------------------------------------------------------------------------------- /L3D/examples/Text/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/examples/Text/sketch.properties -------------------------------------------------------------------------------- /L3D/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library.properties -------------------------------------------------------------------------------- /L3D/library/L3D.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/L3D.jar -------------------------------------------------------------------------------- /L3D/library/commons-codec-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/commons-codec-1.10.jar -------------------------------------------------------------------------------- /L3D/library/joda-time-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/joda-time-2.4.jar -------------------------------------------------------------------------------- /L3D/library/library/export.txt: -------------------------------------------------------------------------------- 1 | name = Serial I/O 2 | -------------------------------------------------------------------------------- /L3D/library/library/jssc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/library/jssc.jar -------------------------------------------------------------------------------- /L3D/library/library/jssc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/library/jssc.txt -------------------------------------------------------------------------------- /L3D/library/library/linux32/libjSSC-2.8.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/library/linux32/libjSSC-2.8.so -------------------------------------------------------------------------------- /L3D/library/library/linux64/libjSSC-2.8.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/library/linux64/libjSSC-2.8.so -------------------------------------------------------------------------------- /L3D/library/library/macosx/libjSSC-2.8.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/library/macosx/libjSSC-2.8.jnilib -------------------------------------------------------------------------------- /L3D/library/library/serial.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/library/serial.jar -------------------------------------------------------------------------------- /L3D/library/library/windows32/jSSC-2.8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/library/windows32/jSSC-2.8.dll -------------------------------------------------------------------------------- /L3D/library/library/windows64/jSSC-2.8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/library/windows64/jSSC-2.8.dll -------------------------------------------------------------------------------- /L3D/library/org.json.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/library/org.json.jar -------------------------------------------------------------------------------- /L3D/reference/L3D/L3D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/L3D/L3D.html -------------------------------------------------------------------------------- /L3D/reference/L3D/L3D_UDP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/L3D/L3D_UDP.html -------------------------------------------------------------------------------- /L3D/reference/L3D/Spark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/L3D/Spark.html -------------------------------------------------------------------------------- /L3D/reference/L3D/Streaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/L3D/Streaming.html -------------------------------------------------------------------------------- /L3D/reference/L3D/Text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/L3D/Text.html -------------------------------------------------------------------------------- /L3D/reference/L3D/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/L3D/package-frame.html -------------------------------------------------------------------------------- /L3D/reference/L3D/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/L3D/package-summary.html -------------------------------------------------------------------------------- /L3D/reference/L3D/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/L3D/package-tree.html -------------------------------------------------------------------------------- /L3D/reference/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/allclasses-frame.html -------------------------------------------------------------------------------- /L3D/reference/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/allclasses-noframe.html -------------------------------------------------------------------------------- /L3D/reference/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/constant-values.html -------------------------------------------------------------------------------- /L3D/reference/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/deprecated-list.html -------------------------------------------------------------------------------- /L3D/reference/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/help-doc.html -------------------------------------------------------------------------------- /L3D/reference/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/index-all.html -------------------------------------------------------------------------------- /L3D/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/index.html -------------------------------------------------------------------------------- /L3D/reference/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/overview-tree.html -------------------------------------------------------------------------------- /L3D/reference/package-list: -------------------------------------------------------------------------------- 1 | L3D 2 | -------------------------------------------------------------------------------- /L3D/reference/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/resources/inherit.gif -------------------------------------------------------------------------------- /L3D/reference/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/reference/stylesheet.css -------------------------------------------------------------------------------- /L3D/src/L3D/L3D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/src/L3D/L3D.java -------------------------------------------------------------------------------- /L3D/src/L3D/L3D_UDP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/src/L3D/L3D_UDP.java -------------------------------------------------------------------------------- /L3D/src/L3D/Spark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/src/L3D/Spark.java -------------------------------------------------------------------------------- /L3D/src/L3D/Streaming.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/src/L3D/Streaming.java -------------------------------------------------------------------------------- /L3D/src/L3D/Text.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/L3D/src/L3D/Text.java -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjrolas/L3D-Library/HEAD/readme.md --------------------------------------------------------------------------------