├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── example-forest ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── example-forest.qbs ├── example-forest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── example-forest.xcscmblueprint │ │ └── xcuserdata │ │ │ └── da1.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example-forest Debug.xcscheme │ │ │ └── example-forest Release.xcscheme │ └── xcuserdata │ │ └── da1.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-gui ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── trees │ │ ├── bush-1.xml │ │ ├── carpet.xml │ │ ├── doube-rule.xml │ │ ├── koch.xml │ │ ├── node-rewriting-1.xml │ │ ├── node-rewriting-2.xml │ │ ├── node-rewriting-3.xml │ │ ├── parametric-test.xml │ │ ├── parametric-without-condition.xml │ │ ├── sierpinski-gasket.xml │ │ ├── stochastic-test.xml │ │ ├── tree-3.xml │ │ ├── twig.xml │ │ └── weed-1.xml ├── config.make ├── example-gui.qbs ├── example-gui.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── example-gui.xcscmblueprint │ │ └── xcuserdata │ │ │ └── da1.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example-gui Debug.xcscheme │ │ │ └── example-gui Release.xcscheme │ └── xcuserdata │ │ └── da1.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── guiExample.qbs ├── guiExample.qbs.user ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-shader ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── shaders_gl3 │ │ ├── 2dmatrices.frag │ │ ├── 2dmatrices.vert │ │ ├── basic.frag │ │ ├── basic.vert │ │ ├── colors.frag │ │ ├── colors.vert │ │ ├── generative.frag │ │ ├── generative.vert │ │ ├── noise.frag │ │ ├── noise.vert │ │ ├── patterns.frag │ │ ├── patterns.vert │ │ ├── ring.frag │ │ ├── ring.vert │ │ ├── shapes.frag │ │ └── shapes.vert ├── config.make ├── example-shader.qbs ├── example-shader.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── example-shader.xcscmblueprint │ │ └── xcuserdata │ │ │ └── da1.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── shadersTree Debug.xcscheme │ │ │ └── shadersTree Release.xcscheme │ └── xcuserdata │ │ └── da1.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-texture ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── bark.jpg │ │ └── texture.png ├── config.make ├── example-texture.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── example-texture.xcscmblueprint │ │ └── xcuserdata │ │ │ └── da1.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example-texture Debug.xcscheme │ │ │ └── example-texture Release.xcscheme │ └── xcuserdata │ │ └── da1.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── img ├── azul.png ├── forest.png ├── green.png ├── rings.gif ├── scaleWidth.png └── violet.png ├── ofxaddons_thumbnail.png └── src ├── ofxLSBoundingBox.h ├── ofxLSBranch.h ├── ofxLSGeometry.cpp ├── ofxLSGeometry.h ├── ofxLSGeometryAvailable.h ├── ofxLSInputError.h ├── ofxLSInstruction.cpp ├── ofxLSInstruction.h ├── ofxLSLine.cpp ├── ofxLSLine.h ├── ofxLSOption.h ├── ofxLSTriangle.cpp ├── ofxLSTriangle.h ├── ofxLSTube.cpp ├── ofxLSTube.h ├── ofxLSTubeDeformed.cpp ├── ofxLSTubeDeformed.h ├── ofxLSTurtle.cpp ├── ofxLSTurtle.h ├── ofxLSUtils.h ├── ofxLSystem.cpp └── ofxLSystem.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/README.md -------------------------------------------------------------------------------- /example-forest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/Makefile -------------------------------------------------------------------------------- /example-forest/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/Project.xcconfig -------------------------------------------------------------------------------- /example-forest/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/addons.make -------------------------------------------------------------------------------- /example-forest/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-forest/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/config.make -------------------------------------------------------------------------------- /example-forest/example-forest.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/example-forest.qbs -------------------------------------------------------------------------------- /example-forest/example-forest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/example-forest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-forest/example-forest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/example-forest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-forest/example-forest.xcodeproj/project.xcworkspace/xcshareddata/example-forest.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/example-forest.xcodeproj/project.xcworkspace/xcshareddata/example-forest.xcscmblueprint -------------------------------------------------------------------------------- /example-forest/example-forest.xcodeproj/project.xcworkspace/xcuserdata/da1.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/example-forest.xcodeproj/project.xcworkspace/xcuserdata/da1.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example-forest/example-forest.xcodeproj/xcshareddata/xcschemes/example-forest Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/example-forest.xcodeproj/xcshareddata/xcschemes/example-forest Debug.xcscheme -------------------------------------------------------------------------------- /example-forest/example-forest.xcodeproj/xcshareddata/xcschemes/example-forest Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/example-forest.xcodeproj/xcshareddata/xcschemes/example-forest Release.xcscheme -------------------------------------------------------------------------------- /example-forest/example-forest.xcodeproj/xcuserdata/da1.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/example-forest.xcodeproj/xcuserdata/da1.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example-forest/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-forest/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/src/main.cpp -------------------------------------------------------------------------------- /example-forest/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/src/ofApp.cpp -------------------------------------------------------------------------------- /example-forest/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-forest/src/ofApp.h -------------------------------------------------------------------------------- /example-gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/Makefile -------------------------------------------------------------------------------- /example-gui/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/Project.xcconfig -------------------------------------------------------------------------------- /example-gui/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/addons.make -------------------------------------------------------------------------------- /example-gui/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-gui/bin/data/trees/bush-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/bush-1.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/carpet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/carpet.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/doube-rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/doube-rule.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/koch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/koch.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/node-rewriting-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/node-rewriting-1.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/node-rewriting-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/node-rewriting-2.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/node-rewriting-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/node-rewriting-3.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/parametric-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/parametric-test.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/parametric-without-condition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/parametric-without-condition.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/sierpinski-gasket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/sierpinski-gasket.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/stochastic-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/stochastic-test.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/tree-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/tree-3.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/twig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/twig.xml -------------------------------------------------------------------------------- /example-gui/bin/data/trees/weed-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/bin/data/trees/weed-1.xml -------------------------------------------------------------------------------- /example-gui/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/config.make -------------------------------------------------------------------------------- /example-gui/example-gui.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.qbs -------------------------------------------------------------------------------- /example-gui/example-gui.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-gui/example-gui.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-gui/example-gui.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example-gui/example-gui.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example-gui/example-gui.xcodeproj/project.xcworkspace/xcshareddata/example-gui.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.xcodeproj/project.xcworkspace/xcshareddata/example-gui.xcscmblueprint -------------------------------------------------------------------------------- /example-gui/example-gui.xcodeproj/project.xcworkspace/xcuserdata/da1.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.xcodeproj/project.xcworkspace/xcuserdata/da1.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example-gui/example-gui.xcodeproj/xcshareddata/xcschemes/example-gui Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.xcodeproj/xcshareddata/xcschemes/example-gui Debug.xcscheme -------------------------------------------------------------------------------- /example-gui/example-gui.xcodeproj/xcshareddata/xcschemes/example-gui Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.xcodeproj/xcshareddata/xcschemes/example-gui Release.xcscheme -------------------------------------------------------------------------------- /example-gui/example-gui.xcodeproj/xcuserdata/da1.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/example-gui.xcodeproj/xcuserdata/da1.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example-gui/guiExample.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/guiExample.qbs -------------------------------------------------------------------------------- /example-gui/guiExample.qbs.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/guiExample.qbs.user -------------------------------------------------------------------------------- /example-gui/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-gui/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/src/main.cpp -------------------------------------------------------------------------------- /example-gui/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/src/ofApp.cpp -------------------------------------------------------------------------------- /example-gui/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-gui/src/ofApp.h -------------------------------------------------------------------------------- /example-shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/Makefile -------------------------------------------------------------------------------- /example-shader/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/Project.xcconfig -------------------------------------------------------------------------------- /example-shader/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/addons.make -------------------------------------------------------------------------------- /example-shader/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/2dmatrices.frag: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/2dmatrices.vert: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/basic.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/basic.frag -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/basic.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/basic.vert -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/colors.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/colors.frag -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/colors.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/colors.vert -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/generative.frag: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/generative.vert: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/noise.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/noise.frag -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/noise.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/noise.vert -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/patterns.frag: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/patterns.vert: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/ring.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/ring.frag -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/ring.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/ring.vert -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/shapes.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/shapes.frag -------------------------------------------------------------------------------- /example-shader/bin/data/shaders_gl3/shapes.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/bin/data/shaders_gl3/shapes.vert -------------------------------------------------------------------------------- /example-shader/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/config.make -------------------------------------------------------------------------------- /example-shader/example-shader.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/example-shader.qbs -------------------------------------------------------------------------------- /example-shader/example-shader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/example-shader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-shader/example-shader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/example-shader.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-shader/example-shader.xcodeproj/project.xcworkspace/xcshareddata/example-shader.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/example-shader.xcodeproj/project.xcworkspace/xcshareddata/example-shader.xcscmblueprint -------------------------------------------------------------------------------- /example-shader/example-shader.xcodeproj/project.xcworkspace/xcuserdata/da1.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/example-shader.xcodeproj/project.xcworkspace/xcuserdata/da1.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example-shader/example-shader.xcodeproj/xcshareddata/xcschemes/shadersTree Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/example-shader.xcodeproj/xcshareddata/xcschemes/shadersTree Debug.xcscheme -------------------------------------------------------------------------------- /example-shader/example-shader.xcodeproj/xcshareddata/xcschemes/shadersTree Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/example-shader.xcodeproj/xcshareddata/xcschemes/shadersTree Release.xcscheme -------------------------------------------------------------------------------- /example-shader/example-shader.xcodeproj/xcuserdata/da1.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/example-shader.xcodeproj/xcuserdata/da1.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /example-shader/example-shader.xcodeproj/xcuserdata/da1.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/example-shader.xcodeproj/xcuserdata/da1.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example-shader/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-shader/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/src/main.cpp -------------------------------------------------------------------------------- /example-shader/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/src/ofApp.cpp -------------------------------------------------------------------------------- /example-shader/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-shader/src/ofApp.h -------------------------------------------------------------------------------- /example-texture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/Makefile -------------------------------------------------------------------------------- /example-texture/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/Project.xcconfig -------------------------------------------------------------------------------- /example-texture/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/addons.make -------------------------------------------------------------------------------- /example-texture/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-texture/bin/data/bark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/bin/data/bark.jpg -------------------------------------------------------------------------------- /example-texture/bin/data/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/bin/data/texture.png -------------------------------------------------------------------------------- /example-texture/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/config.make -------------------------------------------------------------------------------- /example-texture/example-texture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/example-texture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-texture/example-texture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/example-texture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-texture/example-texture.xcodeproj/project.xcworkspace/xcshareddata/example-texture.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/example-texture.xcodeproj/project.xcworkspace/xcshareddata/example-texture.xcscmblueprint -------------------------------------------------------------------------------- /example-texture/example-texture.xcodeproj/project.xcworkspace/xcuserdata/da1.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/example-texture.xcodeproj/project.xcworkspace/xcuserdata/da1.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example-texture/example-texture.xcodeproj/xcshareddata/xcschemes/example-texture Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/example-texture.xcodeproj/xcshareddata/xcschemes/example-texture Debug.xcscheme -------------------------------------------------------------------------------- /example-texture/example-texture.xcodeproj/xcshareddata/xcschemes/example-texture Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/example-texture.xcodeproj/xcshareddata/xcschemes/example-texture Release.xcscheme -------------------------------------------------------------------------------- /example-texture/example-texture.xcodeproj/xcuserdata/da1.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/example-texture.xcodeproj/xcuserdata/da1.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example-texture/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-texture/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/src/main.cpp -------------------------------------------------------------------------------- /example-texture/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/src/ofApp.cpp -------------------------------------------------------------------------------- /example-texture/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/example-texture/src/ofApp.h -------------------------------------------------------------------------------- /img/azul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/img/azul.png -------------------------------------------------------------------------------- /img/forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/img/forest.png -------------------------------------------------------------------------------- /img/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/img/green.png -------------------------------------------------------------------------------- /img/rings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/img/rings.gif -------------------------------------------------------------------------------- /img/scaleWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/img/scaleWidth.png -------------------------------------------------------------------------------- /img/violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/img/violet.png -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/ofxLSBoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSBoundingBox.h -------------------------------------------------------------------------------- /src/ofxLSBranch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSBranch.h -------------------------------------------------------------------------------- /src/ofxLSGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSGeometry.cpp -------------------------------------------------------------------------------- /src/ofxLSGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSGeometry.h -------------------------------------------------------------------------------- /src/ofxLSGeometryAvailable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSGeometryAvailable.h -------------------------------------------------------------------------------- /src/ofxLSInputError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSInputError.h -------------------------------------------------------------------------------- /src/ofxLSInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSInstruction.cpp -------------------------------------------------------------------------------- /src/ofxLSInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSInstruction.h -------------------------------------------------------------------------------- /src/ofxLSLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSLine.cpp -------------------------------------------------------------------------------- /src/ofxLSLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSLine.h -------------------------------------------------------------------------------- /src/ofxLSOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSOption.h -------------------------------------------------------------------------------- /src/ofxLSTriangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSTriangle.cpp -------------------------------------------------------------------------------- /src/ofxLSTriangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSTriangle.h -------------------------------------------------------------------------------- /src/ofxLSTube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSTube.cpp -------------------------------------------------------------------------------- /src/ofxLSTube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSTube.h -------------------------------------------------------------------------------- /src/ofxLSTubeDeformed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSTubeDeformed.cpp -------------------------------------------------------------------------------- /src/ofxLSTubeDeformed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSTubeDeformed.h -------------------------------------------------------------------------------- /src/ofxLSTurtle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSTurtle.cpp -------------------------------------------------------------------------------- /src/ofxLSTurtle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSTurtle.h -------------------------------------------------------------------------------- /src/ofxLSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSUtils.h -------------------------------------------------------------------------------- /src/ofxLSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSystem.cpp -------------------------------------------------------------------------------- /src/ofxLSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edap/ofxLSystem/HEAD/src/ofxLSystem.h --------------------------------------------------------------------------------