├── .gitignore ├── GenerativeNature.sln ├── GenerativeNature.vcxproj ├── GenerativeNature.vcxproj.filters ├── GenerativeNature.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── GenerativeNature Debug.xcscheme │ └── GenerativeNature Release.xcscheme ├── LICENSE.md ├── Makefile ├── MaxController ├── AttackDetect.maxpat ├── BPMController.maxpat ├── Controller.maxpat ├── KeyDetect.maxpat ├── PfxController.maxpat └── SceneController.maxpat ├── Project.xcconfig ├── README.md ├── addons.make ├── bin ├── GenerativeNature.exp ├── data │ ├── .gitkeep │ └── shader │ │ ├── alphaFrag.frag │ │ ├── customShader.frag │ │ ├── gbuffer.frag │ │ ├── gbuffer.vert │ │ ├── passThru.vert │ │ ├── pfx │ │ ├── ColorConv.frag │ │ ├── ComplexConv.frag │ │ ├── GammaConv.frag │ │ └── MirrorConv.frag │ │ ├── scene │ │ ├── CalatravaStruct.vert │ │ ├── ConnectedLights.frag │ │ ├── ConnectedLights.geom │ │ ├── ConnectedLights.vert │ │ ├── FractInst.vert │ │ ├── NoiseSea.frag │ │ ├── NoiseSea.geom │ │ ├── NoiseSea.vert │ │ ├── OctaNest.vert │ │ ├── ParticleDrop.frag │ │ ├── ParticleDrop.vert │ │ ├── RotateArc.vert │ │ ├── arc.vert │ │ ├── broken.vert │ │ ├── line.vert │ │ ├── noise3D.frag │ │ ├── output.frag │ │ ├── random.frag │ │ ├── wireframe.frag │ │ ├── wireframe.geom │ │ └── wireframe.vert │ │ └── vfx │ │ ├── Blur.frag │ │ ├── Dof.frag │ │ ├── LinearDepth.frag │ │ ├── PassThru.vert │ │ ├── PointLight.frag │ │ ├── ShadowLight.frag │ │ ├── Ssao.frag │ │ └── rand.glslinc.frag ├── maxcontroller.png ├── screenshot1.jpg ├── screenshot2.jpg ├── screenshot3.jpg └── screenshot4.jpg ├── config.make ├── icon.rc ├── openFrameworks-Info.plist └── src ├── PostEffect.cpp ├── PostEffect.hpp ├── main.cpp ├── objs ├── CalatravaStruct.cpp ├── CalatravaStruct.hpp ├── CommonUtil.hpp ├── ComplexBuilding.hpp ├── ComplexFlower.hpp ├── ConnectedLights.hpp ├── FractalInstancing.cpp ├── FractalInstancing.hpp ├── GenTunnel.hpp ├── NoiseSea.hpp ├── ObjBase.hpp ├── OctaNest.hpp ├── OctaWarms.hpp ├── PartObj.cpp ├── PartObj.hpp ├── ParticleDrop.hpp ├── RotateArc.hpp ├── SubdivIcosa.hpp ├── TriWall.hpp └── WarpGate.hpp ├── ofApp.cpp └── ofApp.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/.gitignore -------------------------------------------------------------------------------- /GenerativeNature.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/GenerativeNature.sln -------------------------------------------------------------------------------- /GenerativeNature.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/GenerativeNature.vcxproj -------------------------------------------------------------------------------- /GenerativeNature.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/GenerativeNature.vcxproj.filters -------------------------------------------------------------------------------- /GenerativeNature.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/GenerativeNature.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GenerativeNature.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/GenerativeNature.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GenerativeNature.xcodeproj/xcshareddata/xcschemes/GenerativeNature Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/GenerativeNature.xcodeproj/xcshareddata/xcschemes/GenerativeNature Debug.xcscheme -------------------------------------------------------------------------------- /GenerativeNature.xcodeproj/xcshareddata/xcschemes/GenerativeNature Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/GenerativeNature.xcodeproj/xcshareddata/xcschemes/GenerativeNature Release.xcscheme -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/Makefile -------------------------------------------------------------------------------- /MaxController/AttackDetect.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/MaxController/AttackDetect.maxpat -------------------------------------------------------------------------------- /MaxController/BPMController.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/MaxController/BPMController.maxpat -------------------------------------------------------------------------------- /MaxController/Controller.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/MaxController/Controller.maxpat -------------------------------------------------------------------------------- /MaxController/KeyDetect.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/MaxController/KeyDetect.maxpat -------------------------------------------------------------------------------- /MaxController/PfxController.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/MaxController/PfxController.maxpat -------------------------------------------------------------------------------- /MaxController/SceneController.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/MaxController/SceneController.maxpat -------------------------------------------------------------------------------- /Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/Project.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/README.md -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/addons.make -------------------------------------------------------------------------------- /bin/GenerativeNature.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/GenerativeNature.exp -------------------------------------------------------------------------------- /bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/shader/alphaFrag.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/alphaFrag.frag -------------------------------------------------------------------------------- /bin/data/shader/customShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/customShader.frag -------------------------------------------------------------------------------- /bin/data/shader/gbuffer.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/gbuffer.frag -------------------------------------------------------------------------------- /bin/data/shader/gbuffer.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/gbuffer.vert -------------------------------------------------------------------------------- /bin/data/shader/passThru.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/passThru.vert -------------------------------------------------------------------------------- /bin/data/shader/pfx/ColorConv.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/pfx/ColorConv.frag -------------------------------------------------------------------------------- /bin/data/shader/pfx/ComplexConv.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/pfx/ComplexConv.frag -------------------------------------------------------------------------------- /bin/data/shader/pfx/GammaConv.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/pfx/GammaConv.frag -------------------------------------------------------------------------------- /bin/data/shader/pfx/MirrorConv.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/pfx/MirrorConv.frag -------------------------------------------------------------------------------- /bin/data/shader/scene/CalatravaStruct.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/CalatravaStruct.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/ConnectedLights.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/ConnectedLights.frag -------------------------------------------------------------------------------- /bin/data/shader/scene/ConnectedLights.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/ConnectedLights.geom -------------------------------------------------------------------------------- /bin/data/shader/scene/ConnectedLights.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/ConnectedLights.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/FractInst.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/FractInst.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/NoiseSea.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/NoiseSea.frag -------------------------------------------------------------------------------- /bin/data/shader/scene/NoiseSea.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/NoiseSea.geom -------------------------------------------------------------------------------- /bin/data/shader/scene/NoiseSea.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/NoiseSea.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/OctaNest.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/OctaNest.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/ParticleDrop.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/ParticleDrop.frag -------------------------------------------------------------------------------- /bin/data/shader/scene/ParticleDrop.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/ParticleDrop.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/RotateArc.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/RotateArc.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/arc.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/arc.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/broken.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/broken.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/line.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/line.vert -------------------------------------------------------------------------------- /bin/data/shader/scene/noise3D.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/noise3D.frag -------------------------------------------------------------------------------- /bin/data/shader/scene/output.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/output.frag -------------------------------------------------------------------------------- /bin/data/shader/scene/random.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/random.frag -------------------------------------------------------------------------------- /bin/data/shader/scene/wireframe.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/wireframe.frag -------------------------------------------------------------------------------- /bin/data/shader/scene/wireframe.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/wireframe.geom -------------------------------------------------------------------------------- /bin/data/shader/scene/wireframe.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/scene/wireframe.vert -------------------------------------------------------------------------------- /bin/data/shader/vfx/Blur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/vfx/Blur.frag -------------------------------------------------------------------------------- /bin/data/shader/vfx/Dof.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/vfx/Dof.frag -------------------------------------------------------------------------------- /bin/data/shader/vfx/LinearDepth.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/vfx/LinearDepth.frag -------------------------------------------------------------------------------- /bin/data/shader/vfx/PassThru.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/vfx/PassThru.vert -------------------------------------------------------------------------------- /bin/data/shader/vfx/PointLight.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/vfx/PointLight.frag -------------------------------------------------------------------------------- /bin/data/shader/vfx/ShadowLight.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/vfx/ShadowLight.frag -------------------------------------------------------------------------------- /bin/data/shader/vfx/Ssao.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/vfx/Ssao.frag -------------------------------------------------------------------------------- /bin/data/shader/vfx/rand.glslinc.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/data/shader/vfx/rand.glslinc.frag -------------------------------------------------------------------------------- /bin/maxcontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/maxcontroller.png -------------------------------------------------------------------------------- /bin/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/screenshot1.jpg -------------------------------------------------------------------------------- /bin/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/screenshot2.jpg -------------------------------------------------------------------------------- /bin/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/screenshot3.jpg -------------------------------------------------------------------------------- /bin/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/bin/screenshot4.jpg -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/config.make -------------------------------------------------------------------------------- /icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/icon.rc -------------------------------------------------------------------------------- /openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/openFrameworks-Info.plist -------------------------------------------------------------------------------- /src/PostEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/PostEffect.cpp -------------------------------------------------------------------------------- /src/PostEffect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/PostEffect.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/objs/CalatravaStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/CalatravaStruct.cpp -------------------------------------------------------------------------------- /src/objs/CalatravaStruct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/CalatravaStruct.hpp -------------------------------------------------------------------------------- /src/objs/CommonUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/CommonUtil.hpp -------------------------------------------------------------------------------- /src/objs/ComplexBuilding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/ComplexBuilding.hpp -------------------------------------------------------------------------------- /src/objs/ComplexFlower.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/ComplexFlower.hpp -------------------------------------------------------------------------------- /src/objs/ConnectedLights.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/ConnectedLights.hpp -------------------------------------------------------------------------------- /src/objs/FractalInstancing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/FractalInstancing.cpp -------------------------------------------------------------------------------- /src/objs/FractalInstancing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/FractalInstancing.hpp -------------------------------------------------------------------------------- /src/objs/GenTunnel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/GenTunnel.hpp -------------------------------------------------------------------------------- /src/objs/NoiseSea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/NoiseSea.hpp -------------------------------------------------------------------------------- /src/objs/ObjBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/ObjBase.hpp -------------------------------------------------------------------------------- /src/objs/OctaNest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/OctaNest.hpp -------------------------------------------------------------------------------- /src/objs/OctaWarms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/OctaWarms.hpp -------------------------------------------------------------------------------- /src/objs/PartObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/PartObj.cpp -------------------------------------------------------------------------------- /src/objs/PartObj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/PartObj.hpp -------------------------------------------------------------------------------- /src/objs/ParticleDrop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/ParticleDrop.hpp -------------------------------------------------------------------------------- /src/objs/RotateArc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/RotateArc.hpp -------------------------------------------------------------------------------- /src/objs/SubdivIcosa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/SubdivIcosa.hpp -------------------------------------------------------------------------------- /src/objs/TriWall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/TriWall.hpp -------------------------------------------------------------------------------- /src/objs/WarpGate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/objs/WarpGate.hpp -------------------------------------------------------------------------------- /src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nama-gatsuo/GenerativeNature/HEAD/src/ofApp.h --------------------------------------------------------------------------------