├── .gitignore ├── CineVivo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── CineVivo Debug.xcscheme │ └── CineVivo Release.xcscheme ├── Makefile ├── Project.xcconfig ├── README.md ├── addons.make ├── bin └── data │ ├── .gitkeep │ ├── CineVivoStream.hs │ ├── audio │ └── voz.mp3 │ ├── code │ └── example.cvf │ ├── fonts │ └── font.ttf │ ├── help.txt │ ├── images │ ├── buda.jpg │ ├── cyborg.jpg │ └── fractal.png │ ├── img │ ├── canvas_texture.jpg │ ├── glass │ │ └── 3.jpg │ ├── lookup.png │ ├── lookup_amatorka.png │ ├── lookup_miss_etikate.png │ ├── lookup_soft_elegance_1.png │ ├── lookup_soft_elegance_2.png │ ├── mandel.jpg │ ├── voroni_points.png │ ├── voronoi.png │ └── wes.jpg │ ├── keywords.txt │ ├── mask │ ├── circleH.png │ ├── circleV.png │ ├── como_un_rio.png │ ├── frame.png │ ├── pentV.png │ ├── pentaH.png │ ├── squareH.png │ ├── squareV.png │ ├── starH.png │ └── starV.png │ ├── models │ ├── .gitkeep │ ├── Pictures │ │ └── turbochi_new_Final3.png │ ├── Pieza2.stl │ ├── TurbochiFromXSI.dae │ ├── astroBoy_walk.dae │ ├── axe.jpg │ ├── boy_10.tga │ ├── dwarf.jpg │ ├── dwarf.x │ ├── monster-animated-character-X.X │ ├── monster.jpg │ └── squirrel │ │ ├── NewSquirrel.3ds │ │ ├── Squirrel.jpg │ │ └── readme.txt │ ├── shaders │ ├── easings.frag │ ├── fractal.frag │ ├── fractal.vert │ ├── grey.frag │ ├── grey.vert │ ├── hydra.frag │ ├── hydra.vert │ ├── invert.frag │ ├── invert.vert │ ├── lines.frag │ ├── lines.vert │ ├── maya.frag │ ├── maya.vert │ ├── moving.frag │ ├── moving.vert │ ├── noise.frag │ ├── noise.vert │ ├── pixel.frag │ ├── pixel.vert │ ├── shader.frag │ ├── shader.vert │ ├── test.frag │ └── test.vert │ ├── videos │ └── fluido.mov │ └── xml │ ├── CVSyntaxCustom.xml │ ├── CVSyntaxEN.xml │ ├── CVSyntaxES.xml │ ├── OSCConf.xml │ ├── colorScheme.xml │ ├── languageCustom.xml │ ├── languageEN.xml │ ├── languageES.xml │ └── variables.xml ├── config.make ├── obj └── linux64 │ └── Release │ └── .compiler_flags ├── openFrameworks-Info.plist └── src ├── main.cpp ├── ofApp.cpp └── ofApp.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/.gitignore -------------------------------------------------------------------------------- /CineVivo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/CineVivo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CineVivo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/CineVivo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CineVivo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/CineVivo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CineVivo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/CineVivo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /CineVivo.xcodeproj/xcshareddata/xcschemes/CineVivo Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/CineVivo.xcodeproj/xcshareddata/xcschemes/CineVivo Debug.xcscheme -------------------------------------------------------------------------------- /CineVivo.xcodeproj/xcshareddata/xcschemes/CineVivo Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/CineVivo.xcodeproj/xcshareddata/xcschemes/CineVivo Release.xcscheme -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/Makefile -------------------------------------------------------------------------------- /Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/Project.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/README.md -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/addons.make -------------------------------------------------------------------------------- /bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/CineVivoStream.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/CineVivoStream.hs -------------------------------------------------------------------------------- /bin/data/audio/voz.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/audio/voz.mp3 -------------------------------------------------------------------------------- /bin/data/code/example.cvf: -------------------------------------------------------------------------------- 1 | e1 load pie.mov -------------------------------------------------------------------------------- /bin/data/fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/fonts/font.ttf -------------------------------------------------------------------------------- /bin/data/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/help.txt -------------------------------------------------------------------------------- /bin/data/images/buda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/images/buda.jpg -------------------------------------------------------------------------------- /bin/data/images/cyborg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/images/cyborg.jpg -------------------------------------------------------------------------------- /bin/data/images/fractal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/images/fractal.png -------------------------------------------------------------------------------- /bin/data/img/canvas_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/canvas_texture.jpg -------------------------------------------------------------------------------- /bin/data/img/glass/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/glass/3.jpg -------------------------------------------------------------------------------- /bin/data/img/lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/lookup.png -------------------------------------------------------------------------------- /bin/data/img/lookup_amatorka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/lookup_amatorka.png -------------------------------------------------------------------------------- /bin/data/img/lookup_miss_etikate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/lookup_miss_etikate.png -------------------------------------------------------------------------------- /bin/data/img/lookup_soft_elegance_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/lookup_soft_elegance_1.png -------------------------------------------------------------------------------- /bin/data/img/lookup_soft_elegance_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/lookup_soft_elegance_2.png -------------------------------------------------------------------------------- /bin/data/img/mandel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/mandel.jpg -------------------------------------------------------------------------------- /bin/data/img/voroni_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/voroni_points.png -------------------------------------------------------------------------------- /bin/data/img/voronoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/voronoi.png -------------------------------------------------------------------------------- /bin/data/img/wes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/img/wes.jpg -------------------------------------------------------------------------------- /bin/data/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/keywords.txt -------------------------------------------------------------------------------- /bin/data/mask/circleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/circleH.png -------------------------------------------------------------------------------- /bin/data/mask/circleV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/circleV.png -------------------------------------------------------------------------------- /bin/data/mask/como_un_rio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/como_un_rio.png -------------------------------------------------------------------------------- /bin/data/mask/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/frame.png -------------------------------------------------------------------------------- /bin/data/mask/pentV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/pentV.png -------------------------------------------------------------------------------- /bin/data/mask/pentaH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/pentaH.png -------------------------------------------------------------------------------- /bin/data/mask/squareH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/squareH.png -------------------------------------------------------------------------------- /bin/data/mask/squareV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/squareV.png -------------------------------------------------------------------------------- /bin/data/mask/starH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/starH.png -------------------------------------------------------------------------------- /bin/data/mask/starV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/mask/starV.png -------------------------------------------------------------------------------- /bin/data/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/models/Pictures/turbochi_new_Final3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/Pictures/turbochi_new_Final3.png -------------------------------------------------------------------------------- /bin/data/models/Pieza2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/Pieza2.stl -------------------------------------------------------------------------------- /bin/data/models/TurbochiFromXSI.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/TurbochiFromXSI.dae -------------------------------------------------------------------------------- /bin/data/models/astroBoy_walk.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/astroBoy_walk.dae -------------------------------------------------------------------------------- /bin/data/models/axe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/axe.jpg -------------------------------------------------------------------------------- /bin/data/models/boy_10.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/boy_10.tga -------------------------------------------------------------------------------- /bin/data/models/dwarf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/dwarf.jpg -------------------------------------------------------------------------------- /bin/data/models/dwarf.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/dwarf.x -------------------------------------------------------------------------------- /bin/data/models/monster-animated-character-X.X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/monster-animated-character-X.X -------------------------------------------------------------------------------- /bin/data/models/monster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/monster.jpg -------------------------------------------------------------------------------- /bin/data/models/squirrel/NewSquirrel.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/squirrel/NewSquirrel.3ds -------------------------------------------------------------------------------- /bin/data/models/squirrel/Squirrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/squirrel/Squirrel.jpg -------------------------------------------------------------------------------- /bin/data/models/squirrel/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/models/squirrel/readme.txt -------------------------------------------------------------------------------- /bin/data/shaders/easings.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/easings.frag -------------------------------------------------------------------------------- /bin/data/shaders/fractal.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/fractal.frag -------------------------------------------------------------------------------- /bin/data/shaders/fractal.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/fractal.vert -------------------------------------------------------------------------------- /bin/data/shaders/grey.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/grey.frag -------------------------------------------------------------------------------- /bin/data/shaders/grey.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/grey.vert -------------------------------------------------------------------------------- /bin/data/shaders/hydra.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/hydra.frag -------------------------------------------------------------------------------- /bin/data/shaders/hydra.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/hydra.vert -------------------------------------------------------------------------------- /bin/data/shaders/invert.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/invert.frag -------------------------------------------------------------------------------- /bin/data/shaders/invert.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/invert.vert -------------------------------------------------------------------------------- /bin/data/shaders/lines.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/lines.frag -------------------------------------------------------------------------------- /bin/data/shaders/lines.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/lines.vert -------------------------------------------------------------------------------- /bin/data/shaders/maya.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/maya.frag -------------------------------------------------------------------------------- /bin/data/shaders/maya.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/maya.vert -------------------------------------------------------------------------------- /bin/data/shaders/moving.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/moving.frag -------------------------------------------------------------------------------- /bin/data/shaders/moving.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/moving.vert -------------------------------------------------------------------------------- /bin/data/shaders/noise.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/noise.frag -------------------------------------------------------------------------------- /bin/data/shaders/noise.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/noise.vert -------------------------------------------------------------------------------- /bin/data/shaders/pixel.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/pixel.frag -------------------------------------------------------------------------------- /bin/data/shaders/pixel.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/pixel.vert -------------------------------------------------------------------------------- /bin/data/shaders/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/shader.frag -------------------------------------------------------------------------------- /bin/data/shaders/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/shader.vert -------------------------------------------------------------------------------- /bin/data/shaders/test.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/test.frag -------------------------------------------------------------------------------- /bin/data/shaders/test.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/shaders/test.vert -------------------------------------------------------------------------------- /bin/data/videos/fluido.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/videos/fluido.mov -------------------------------------------------------------------------------- /bin/data/xml/CVSyntaxCustom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/xml/CVSyntaxCustom.xml -------------------------------------------------------------------------------- /bin/data/xml/CVSyntaxEN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/xml/CVSyntaxEN.xml -------------------------------------------------------------------------------- /bin/data/xml/CVSyntaxES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/xml/CVSyntaxES.xml -------------------------------------------------------------------------------- /bin/data/xml/OSCConf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/xml/OSCConf.xml -------------------------------------------------------------------------------- /bin/data/xml/colorScheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/xml/colorScheme.xml -------------------------------------------------------------------------------- /bin/data/xml/languageCustom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/xml/languageCustom.xml -------------------------------------------------------------------------------- /bin/data/xml/languageEN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/xml/languageEN.xml -------------------------------------------------------------------------------- /bin/data/xml/languageES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/xml/languageES.xml -------------------------------------------------------------------------------- /bin/data/xml/variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/bin/data/xml/variables.xml -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/config.make -------------------------------------------------------------------------------- /obj/linux64/Release/.compiler_flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/obj/linux64/Release/.compiler_flags -------------------------------------------------------------------------------- /openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/openFrameworks-Info.plist -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestebetancur/CineVivo/HEAD/src/ofApp.h --------------------------------------------------------------------------------