├── .gitattributes ├── .gitignore ├── AndroidExample ├── AndroidManifest.xml ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── pd │ │ ├── data │ │ └── .gitkeep │ │ ├── main.pd │ │ └── polygonExample.lua ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── res │ ├── drawable │ │ └── ic_launcher.png │ ├── layout │ │ └── main_layout.xml │ ├── menu │ │ └── main_layout.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── settings.gradle ├── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── srcJava │ └── cc │ └── openframeworks │ └── AndroidExample │ └── OFActivity.java ├── CHANGES.txt ├── EmscriptenExample ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── pd │ │ ├── data │ │ └── .gitkeep │ │ ├── main.pd │ │ └── polygonExample.lua ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── LICENSE.txt ├── LinuxExample ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── pd │ │ ├── data │ │ └── .gitkeep │ │ ├── main.pd │ │ └── polygonExample.lua ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── LinuxExternal ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make └── src │ └── .gitkeep ├── README.md ├── WindowsExample ├── WindowsExample.sln ├── WindowsExample.vcxproj ├── WindowsExample.vcxproj.filters ├── WindowsExample.vcxproj.user ├── addons.make ├── bin │ ├── Win32 │ │ ├── libwinpthread-1.dll │ │ ├── pd.dll │ │ └── pthreadVC2.dll │ ├── Win64 │ │ ├── libwinpthread-1.dll │ │ ├── pd.dll │ │ └── pthreadVC2.dll │ └── data │ │ └── pd │ │ ├── data │ │ └── .gitkeep │ │ ├── main.pd │ │ └── polygonExample.lua ├── icon.rc ├── packages.config ├── packages │ ├── pthreads.2.9.1.4 │ │ ├── .signature.p7s │ │ ├── build │ │ │ ├── configurations.autopkg │ │ │ └── native │ │ │ │ ├── default-propertiesui.xml │ │ │ │ ├── docs │ │ │ │ ├── ChangeLog │ │ │ │ ├── PortabilityIssues.html │ │ │ │ ├── index.html │ │ │ │ ├── pthreadCancelableWait.html │ │ │ │ ├── pthread_attr_init.html │ │ │ │ ├── pthread_attr_setstackaddr.html │ │ │ │ ├── pthread_attr_setstacksize.html │ │ │ │ ├── pthread_barrier_init.html │ │ │ │ ├── pthread_barrier_wait.html │ │ │ │ ├── pthread_barrierattr_init.html │ │ │ │ ├── pthread_barrierattr_setpshared.html │ │ │ │ ├── pthread_cancel.html │ │ │ │ ├── pthread_cleanup_push.html │ │ │ │ ├── pthread_cond_init.html │ │ │ │ ├── pthread_condattr_init.html │ │ │ │ ├── pthread_condattr_setpshared.html │ │ │ │ ├── pthread_create.html │ │ │ │ ├── pthread_delay_np.html │ │ │ │ ├── pthread_detach.html │ │ │ │ ├── pthread_equal.html │ │ │ │ ├── pthread_exit.html │ │ │ │ ├── pthread_getunique_np.html │ │ │ │ ├── pthread_getw32threadhandle_np.html │ │ │ │ ├── pthread_join.html │ │ │ │ ├── pthread_key_create.html │ │ │ │ ├── pthread_kill.html │ │ │ │ ├── pthread_mutex_init.html │ │ │ │ ├── pthread_mutexattr_init.html │ │ │ │ ├── pthread_mutexattr_setpshared.html │ │ │ │ ├── pthread_num_processors_np.html │ │ │ │ ├── pthread_once.html │ │ │ │ ├── pthread_rwlock_init.html │ │ │ │ ├── pthread_rwlock_rdlock.html │ │ │ │ ├── pthread_rwlock_timedrdlock.html │ │ │ │ ├── pthread_rwlock_timedwrlock.html │ │ │ │ ├── pthread_rwlock_unlock.html │ │ │ │ ├── pthread_rwlock_wrlock.html │ │ │ │ ├── pthread_rwlockattr_init.html │ │ │ │ ├── pthread_rwlockattr_setpshared.html │ │ │ │ ├── pthread_self.html │ │ │ │ ├── pthread_setcancelstate.html │ │ │ │ ├── pthread_setcanceltype.html │ │ │ │ ├── pthread_setconcurrency.html │ │ │ │ ├── pthread_setschedparam.html │ │ │ │ ├── pthread_spin_init.html │ │ │ │ ├── pthread_spin_lock.html │ │ │ │ ├── pthread_spin_unlock.html │ │ │ │ ├── pthread_timechange_handler_np.html │ │ │ │ ├── pthread_win32_attach_detach_np.html │ │ │ │ ├── pthread_win32_test_features_np.html │ │ │ │ ├── sched_get_priority_max.html │ │ │ │ ├── sched_getscheduler.html │ │ │ │ ├── sched_setscheduler.html │ │ │ │ ├── sched_yield.html │ │ │ │ └── sem_init.html │ │ │ │ ├── include │ │ │ │ ├── need_errno.h │ │ │ │ ├── pthread.h │ │ │ │ ├── sched.h │ │ │ │ └── semaphore.h │ │ │ │ ├── lib │ │ │ │ ├── v100 │ │ │ │ │ ├── Win32 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ │ │ └── libpthread.lib │ │ │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ │ │ └── libpthread-stdcall.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ │ └── libpthread-static.lib │ │ │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ │ └── libpthread-static-stdcall.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ │ └── libpthread.lib │ │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ │ └── libpthread-stdcall.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ └── libpthread-static.lib │ │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ └── libpthread-static-stdcall.lib │ │ │ │ │ └── x64 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ │ └── libpthread.lib │ │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ │ └── libpthread-stdcall.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ └── libpthread-static.lib │ │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ └── libpthread-static-stdcall.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ └── libpthread.lib │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ └── libpthread-stdcall.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ └── libpthread-static.lib │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ └── libpthread-static-stdcall.lib │ │ │ │ └── v110 │ │ │ │ │ ├── Win32 │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ │ └── libpthread.lib │ │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ │ └── libpthread-stdcall.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ └── libpthread-static.lib │ │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ └── libpthread-static-stdcall.lib │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ └── libpthread.lib │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ └── libpthread-stdcall.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ └── libpthread-static.lib │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ └── libpthread-static-stdcall.lib │ │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ ├── dynamic │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ └── libpthread.lib │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ └── libpthread-stdcall.lib │ │ │ │ │ └── static │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ └── libpthread-static.lib │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ └── libpthread-static-stdcall.lib │ │ │ │ │ └── Release │ │ │ │ │ ├── dynamic │ │ │ │ │ ├── cdecl │ │ │ │ │ │ └── libpthread.lib │ │ │ │ │ └── stdcall │ │ │ │ │ │ └── libpthread-stdcall.lib │ │ │ │ │ └── static │ │ │ │ │ ├── cdecl │ │ │ │ │ └── libpthread-static.lib │ │ │ │ │ └── stdcall │ │ │ │ │ └── libpthread-static-stdcall.lib │ │ │ │ ├── pthreads-propertiesui-066c15f0-790b-4ca8-80a9-e161cb68bc9c.xml │ │ │ │ └── pthreads.targets │ │ └── pthreads.2.9.1.4.nupkg │ └── pthreads.redist.2.9.1.4 │ │ ├── .signature.p7s │ │ ├── build │ │ ├── configurations.autopkg │ │ └── native │ │ │ ├── bin │ │ │ ├── v100 │ │ │ │ ├── Win32 │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ │ └── libpthread.dll │ │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ │ └── libpthread-stdcall.dll │ │ │ │ │ └── Release │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ └── libpthread.dll │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ └── libpthread-stdcall.dll │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── dynamic │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ └── libpthread.dll │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ └── libpthread-stdcall.dll │ │ │ │ │ └── Release │ │ │ │ │ └── dynamic │ │ │ │ │ ├── cdecl │ │ │ │ │ └── libpthread.dll │ │ │ │ │ └── stdcall │ │ │ │ │ └── libpthread-stdcall.dll │ │ │ └── v110 │ │ │ │ ├── Win32 │ │ │ │ ├── Debug │ │ │ │ │ └── dynamic │ │ │ │ │ │ ├── cdecl │ │ │ │ │ │ └── libpthread.dll │ │ │ │ │ │ └── stdcall │ │ │ │ │ │ └── libpthread-stdcall.dll │ │ │ │ └── Release │ │ │ │ │ └── dynamic │ │ │ │ │ ├── cdecl │ │ │ │ │ └── libpthread.dll │ │ │ │ │ └── stdcall │ │ │ │ │ └── libpthread-stdcall.dll │ │ │ │ └── x64 │ │ │ │ ├── Debug │ │ │ │ └── dynamic │ │ │ │ │ ├── cdecl │ │ │ │ │ └── libpthread.dll │ │ │ │ │ └── stdcall │ │ │ │ │ └── libpthread-stdcall.dll │ │ │ │ └── Release │ │ │ │ └── dynamic │ │ │ │ ├── cdecl │ │ │ │ └── libpthread.dll │ │ │ │ └── stdcall │ │ │ │ └── libpthread-stdcall.dll │ │ │ ├── default-propertiesui.xml │ │ │ └── pthreads.redist.targets │ │ └── pthreads.redist.2.9.1.4.nupkg └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── WindowsExternal ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── icon.rc ├── ofelia.sln ├── ofelia.vcxproj ├── ofelia.vcxproj.filters ├── ofelia.vcxproj.user └── src │ └── .gitkeep ├── addon_config.mk ├── doc ├── ESMERIL.png ├── Emscripten.png ├── GLSL.frag ├── GLSL.pd ├── GLSL.png ├── GLSL.vert ├── Iteration.pd ├── Iteration.png ├── Logo.pd ├── Logo.png ├── Ofelia.png ├── Ofelia.psd ├── Ofelia_trans.png └── ofxOfelia.png ├── iOSExample ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── Default@2x~ipad.png │ │ ├── Default@2x~iphone.png │ │ ├── Default~ipad.png │ │ ├── Default~iphone.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ └── pd │ │ ├── data │ │ └── .gitkeep │ │ ├── main.pd │ │ └── polygonExample.lua ├── iOSExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── cuinjune.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── iOSExample.xcscheme │ └── xcuserdata │ │ └── cuinjune.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── mediaAssets │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon@2x.png │ │ │ ├── Icon@3x.png │ │ │ ├── IconSmall-40.png │ │ │ ├── IconSmall-40@2x.png │ │ │ ├── IconSmall-40@3x.png │ │ │ ├── IconSmall.png │ │ │ ├── IconSmall@2x.png │ │ │ └── IconSmall@3x.png │ │ ├── Background.imageset │ │ │ ├── Contents.json │ │ │ ├── background.png │ │ │ ├── background@2x.png │ │ │ └── background@3x.png │ │ ├── Brand Assets.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ ├── Default-Landscape@3x~iphone6+.png │ │ │ ├── Default-Landscape~ipad.png │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ ├── Default-Portrait~ipad.png │ │ │ ├── Default-portrait@2x~iphone4.png │ │ │ ├── Default-portrait@2x~iphone5.png │ │ │ ├── Default-portrait@2x~iphone6.png │ │ │ ├── Default-portrait@3x~iphone6+.png │ │ │ └── Default-portrait~iphone.png │ │ ├── Contents.json │ │ └── Logo.imageset │ │ │ ├── Contents.json │ │ │ ├── logo.png │ │ │ ├── logo@2x.png │ │ │ └── logo@3x.png │ └── LaunchScreen.storyboard ├── ofxiOS-Info.plist ├── ofxiOS_Prefix.pch └── src │ ├── main.mm │ ├── ofApp.h │ └── ofApp.mm ├── libs ├── ofxLua │ ├── .gitignore │ ├── .gitmodules │ ├── CHANGES.txt │ ├── LICENSE.txt │ ├── README.md │ ├── addon_config.mk │ ├── libs │ │ └── lua │ │ │ ├── COPYRIGHT │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lbitlib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── lcorolib.c │ │ │ ├── lctype.c │ │ │ ├── lctype.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lprefix.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.h │ │ │ ├── lua.hpp │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lutf8lib.c │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ └── lzio.h │ ├── src │ │ ├── bindings │ │ │ ├── desktop │ │ │ │ └── ofBindings.cpp │ │ │ ├── glmBindings.cpp │ │ │ ├── ios │ │ │ │ └── ofBindings.cpp │ │ │ ├── linuxarm │ │ │ │ └── ofBindings.cpp │ │ │ └── ofBindings.h │ │ ├── ofxLua.cpp │ │ ├── ofxLua.h │ │ ├── ofxLuaFileWriter.cpp │ │ └── ofxLuaFileWriter.h │ └── swig │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── glm.i │ │ ├── glm │ │ ├── constants.i │ │ ├── functions.i │ │ ├── mat3.i │ │ ├── mat4.i │ │ ├── quat.i │ │ ├── vec2.i │ │ ├── vec3.i │ │ └── vec4.i │ │ ├── openFrameworks.i │ │ └── openFrameworks │ │ ├── attributes.i │ │ ├── deprecated.i │ │ ├── lang │ │ ├── lua │ │ │ ├── lua.i │ │ │ ├── lua_code.i │ │ │ └── std_filesystem_path.i │ │ └── python │ │ │ ├── python.i │ │ │ ├── python_code.i │ │ │ └── std_filesystem_path.i │ │ └── openFrameworks │ │ ├── 3d.i │ │ ├── app.i │ │ ├── communication.i │ │ ├── events.i │ │ ├── gl.i │ │ ├── graphics.i │ │ ├── main.i │ │ ├── math.i │ │ ├── sound.i │ │ ├── types.i │ │ ├── utils.i │ │ └── video.i ├── ofxMidi │ ├── .gitignore │ ├── CHANGES.txt │ ├── LICENSE.txt │ ├── README.md │ ├── addon_config.mk │ ├── libs │ │ ├── pgmidi │ │ │ ├── PGArc.h │ │ │ ├── PGMidi.h │ │ │ ├── PGMidi.mm │ │ │ ├── PGMidiAllSources.h │ │ │ ├── PGMidiAllSources.mm │ │ │ ├── PGMidiFind.h │ │ │ ├── PGMidiFind.mm │ │ │ ├── README.md │ │ │ └── iOSVersionDetection.h │ │ └── rtmidi │ │ │ ├── README.md │ │ │ ├── RtMidi.cpp │ │ │ └── RtMidi.h │ └── src │ │ ├── desktop │ │ ├── ofxRtMidiIn.cpp │ │ ├── ofxRtMidiIn.h │ │ ├── ofxRtMidiOut.cpp │ │ └── ofxRtMidiOut.h │ │ ├── ios │ │ ├── ofxPGMidiContext.h │ │ ├── ofxPGMidiContext.mm │ │ ├── ofxPGMidiDelegate.h │ │ ├── ofxPGMidiDelegate.mm │ │ ├── ofxPGMidiIn.h │ │ ├── ofxPGMidiIn.mm │ │ ├── ofxPGMidiOut.h │ │ ├── ofxPGMidiOut.mm │ │ ├── ofxPGMidiSourceDelegate.h │ │ └── ofxPGMidiSourceDelegate.mm │ │ ├── ofxBaseMidi.cpp │ │ ├── ofxBaseMidi.h │ │ ├── ofxMidi.cpp │ │ ├── ofxMidi.h │ │ ├── ofxMidiClock.cpp │ │ ├── ofxMidiClock.h │ │ ├── ofxMidiConstants.h │ │ ├── ofxMidiIn.cpp │ │ ├── ofxMidiIn.h │ │ ├── ofxMidiMessage.cpp │ │ ├── ofxMidiMessage.h │ │ ├── ofxMidiOut.cpp │ │ ├── ofxMidiOut.h │ │ ├── ofxMidiTimecode.cpp │ │ ├── ofxMidiTimecode.h │ │ └── ofxMidiTypes.h └── ofxPd │ ├── .gitignore │ ├── CHANGES.txt │ ├── LICENSE.txt │ ├── README.md │ ├── addon_config.mk │ ├── libs │ └── libpd │ │ ├── cpp │ │ ├── LICENSE.txt │ │ ├── PdBase.hpp │ │ ├── PdMidiReceiver.hpp │ │ ├── PdReceiver.hpp │ │ └── PdTypes.hpp │ │ ├── lib │ │ ├── Win32 │ │ │ ├── libpd.lib │ │ │ └── pthreadVC2.lib │ │ └── Win64 │ │ │ ├── libpd.lib │ │ │ └── pthreadVC2.lib │ │ ├── libpd_wrapper │ │ ├── s_libpdmidi.c │ │ ├── util │ │ │ ├── ringbuffer.c │ │ │ ├── ringbuffer.h │ │ │ ├── z_print_util.c │ │ │ ├── z_print_util.h │ │ │ ├── z_queued.c │ │ │ └── z_queued.h │ │ ├── x_libpdreceive.c │ │ ├── x_libpdreceive.h │ │ ├── z_hooks.c │ │ ├── z_hooks.h │ │ ├── z_libpd.c │ │ └── z_libpd.h │ │ └── pure-data │ │ ├── extra │ │ ├── README.txt │ │ ├── bob │ │ │ ├── README.txt │ │ │ └── bob~.c │ │ ├── bonk │ │ │ ├── bonk~.c │ │ │ └── templates.txt │ │ ├── choice │ │ │ └── choice.c │ │ ├── fiddle │ │ │ └── fiddle~.c │ │ ├── loop │ │ │ └── loop~.c │ │ ├── lrshift │ │ │ └── lrshift~.c │ │ ├── pd │ │ │ ├── binarymsg.c │ │ │ ├── notes.txt │ │ │ ├── pdsched.c │ │ │ └── pd~.c │ │ ├── pique │ │ │ └── pique.c │ │ ├── sigmund │ │ │ └── sigmund~.c │ │ └── stdout │ │ │ └── stdout.c │ │ └── src │ │ ├── d_arithmetic.c │ │ ├── d_array.c │ │ ├── d_ctl.c │ │ ├── d_dac.c │ │ ├── d_delay.c │ │ ├── d_fft.c │ │ ├── d_fft_fftsg.c │ │ ├── d_filter.c │ │ ├── d_global.c │ │ ├── d_math.c │ │ ├── d_misc.c │ │ ├── d_osc.c │ │ ├── d_resample.c │ │ ├── d_soundfile.c │ │ ├── d_ugen.c │ │ ├── g_all_guis.c │ │ ├── g_all_guis.h │ │ ├── g_array.c │ │ ├── g_bang.c │ │ ├── g_canvas.c │ │ ├── g_canvas.h │ │ ├── g_clone.c │ │ ├── g_editor.c │ │ ├── g_editor_extras.c │ │ ├── g_graph.c │ │ ├── g_guiconnect.c │ │ ├── g_hdial.c │ │ ├── g_hslider.c │ │ ├── g_io.c │ │ ├── g_mycanvas.c │ │ ├── g_numbox.c │ │ ├── g_readwrite.c │ │ ├── g_rtext.c │ │ ├── g_scalar.c │ │ ├── g_template.c │ │ ├── g_text.c │ │ ├── g_toggle.c │ │ ├── g_traversal.c │ │ ├── g_undo.c │ │ ├── g_undo.h │ │ ├── g_vdial.c │ │ ├── g_vslider.c │ │ ├── g_vumeter.c │ │ ├── m_atom.c │ │ ├── m_binbuf.c │ │ ├── m_class.c │ │ ├── m_conf.c │ │ ├── m_glob.c │ │ ├── m_imp.h │ │ ├── m_memory.c │ │ ├── m_obj.c │ │ ├── m_pd.c │ │ ├── m_pd.h │ │ ├── m_sched.c │ │ ├── s_audio.c │ │ ├── s_audio_dummy.c │ │ ├── s_inter.c │ │ ├── s_loader.c │ │ ├── s_main.c │ │ ├── s_net.c │ │ ├── s_net.h │ │ ├── s_path.c │ │ ├── s_print.c │ │ ├── s_stuff.h │ │ ├── s_utf8.c │ │ ├── s_utf8.h │ │ ├── x_acoustics.c │ │ ├── x_arithmetic.c │ │ ├── x_array.c │ │ ├── x_connective.c │ │ ├── x_gui.c │ │ ├── x_interface.c │ │ ├── x_list.c │ │ ├── x_midi.c │ │ ├── x_misc.c │ │ ├── x_net.c │ │ ├── x_scalar.c │ │ ├── x_text.c │ │ ├── x_time.c │ │ ├── x_vexp.c │ │ ├── x_vexp.h │ │ ├── x_vexp_fun.c │ │ └── x_vexp_if.c │ └── src │ ├── ofxPd.cpp │ └── ofxPd.h ├── macOSExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── pd │ │ ├── data │ │ └── .gitkeep │ │ ├── main.pd │ │ └── polygonExample.lua ├── config.make ├── macOSExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── cuinjune.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── macOSExample Debug.xcscheme │ │ │ └── macOSExample Release.xcscheme │ └── xcuserdata │ │ └── cuinjune.xcuserdatad │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── macOSExternal ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── ofelia.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── cuinjune.xcuserdatad │ │ │ ├── IDEFindNavigatorScopes.plist │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── cuinjune.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── ofelia.xcscheme │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ └── .gitkeep ├── ofelia ├── CHANGES.txt ├── LICENSE.txt ├── README.md ├── abs │ ├── ofBackPressed-help.pd │ ├── ofBackPressed.lua │ ├── ofBackPressed.pd │ ├── ofCancelPressed-help.pd │ ├── ofCancelPressed.lua │ ├── ofCancelPressed.pd │ ├── ofDeviceOrientationChanged-help.pd │ ├── ofDeviceOrientationChanged.lua │ ├── ofDeviceOrientationChanged.pd │ ├── ofDragged-help.pd │ ├── ofDragged.lua │ ├── ofDragged.pd │ ├── ofDraw-help.pd │ ├── ofDraw.lua │ ├── ofDraw.pd │ ├── ofExit-help.pd │ ├── ofExit.lua │ ├── ofExit.pd │ ├── ofGotFocus-help.pd │ ├── ofGotFocus.lua │ ├── ofGotFocus.pd │ ├── ofGotMemoryWarning-help.pd │ ├── ofGotMemoryWarning.lua │ ├── ofGotMemoryWarning.pd │ ├── ofKeyPressed-help.pd │ ├── ofKeyPressed.lua │ ├── ofKeyPressed.pd │ ├── ofKeyReleased-help.pd │ ├── ofKeyReleased.lua │ ├── ofKeyReleased.pd │ ├── ofLaunchedWithURL-help.pd │ ├── ofLaunchedWithURL.lua │ ├── ofLaunchedWithURL.pd │ ├── ofLostFocus-help.pd │ ├── ofLostFocus.lua │ ├── ofLostFocus.pd │ ├── ofMessageReceived-help.pd │ ├── ofMessageReceived.lua │ ├── ofMessageReceived.pd │ ├── ofMouseDragged-help.pd │ ├── ofMouseDragged.lua │ ├── ofMouseDragged.pd │ ├── ofMouseEntered-help.pd │ ├── ofMouseEntered.lua │ ├── ofMouseEntered.pd │ ├── ofMouseExited-help.pd │ ├── ofMouseExited.lua │ ├── ofMouseExited.pd │ ├── ofMouseMoved-help.pd │ ├── ofMouseMoved.lua │ ├── ofMouseMoved.pd │ ├── ofMousePressed-help.pd │ ├── ofMousePressed.lua │ ├── ofMousePressed.pd │ ├── ofMouseReleased-help.pd │ ├── ofMouseReleased.lua │ ├── ofMouseReleased.pd │ ├── ofMouseScrolled-help.pd │ ├── ofMouseScrolled.lua │ ├── ofMouseScrolled.pd │ ├── ofOkPressed-help.pd │ ├── ofOkPressed.lua │ ├── ofOkPressed.pd │ ├── ofPause-help.pd │ ├── ofPause.lua │ ├── ofPause.pd │ ├── ofReloadTextures-help.pd │ ├── ofReloadTextures.lua │ ├── ofReloadTextures.pd │ ├── ofResume-help.pd │ ├── ofResume.lua │ ├── ofResume.pd │ ├── ofSetup-help.pd │ ├── ofSetup.lua │ ├── ofSetup.pd │ ├── ofStop-help.pd │ ├── ofStop.lua │ ├── ofStop.pd │ ├── ofSwipe-help.pd │ ├── ofSwipe.lua │ ├── ofSwipe.pd │ ├── ofTouchCancelled-help.pd │ ├── ofTouchCancelled.lua │ ├── ofTouchCancelled.pd │ ├── ofTouchDoubleTap-help.pd │ ├── ofTouchDoubleTap.lua │ ├── ofTouchDoubleTap.pd │ ├── ofTouchDown-help.pd │ ├── ofTouchDown.lua │ ├── ofTouchDown.pd │ ├── ofTouchMoved-help.pd │ ├── ofTouchMoved.lua │ ├── ofTouchMoved.pd │ ├── ofTouchUp-help.pd │ ├── ofTouchUp.lua │ ├── ofTouchUp.pd │ ├── ofUpdate-help.pd │ ├── ofUpdate.lua │ ├── ofUpdate.pd │ ├── ofWindow-help.pd │ ├── ofWindow.lua │ ├── ofWindow.pd │ ├── ofWindowResized-help.pd │ ├── ofWindowResized.lua │ └── ofWindowResized.pd ├── classesAndGlobalFunctions.txt ├── examples │ ├── 3d │ │ ├── 3dPrimitives │ │ │ └── main.pd │ │ └── coloredCube │ │ │ └── main.pd │ ├── drawing │ │ ├── continuousLines │ │ │ └── main.pd │ │ └── pattern │ │ │ └── main.pd │ ├── fbo │ │ └── trails │ │ │ └── main.pd │ ├── image │ │ ├── imageLoaderExample │ │ │ ├── data │ │ │ │ ├── bike_icon.gif │ │ │ │ ├── bike_icon.png │ │ │ │ ├── bikers.jpg │ │ │ │ ├── gears.gif │ │ │ │ ├── tdf_1972_poster.jpg │ │ │ │ └── transparency.png │ │ │ ├── imageLoaderExample.lua │ │ │ └── main.pd │ │ ├── loadDisplayImage │ │ │ ├── data │ │ │ │ └── moonwalk.jpg │ │ │ └── main.pd │ │ ├── pointillism │ │ │ ├── data │ │ │ │ └── moonwalk.jpg │ │ │ └── main.pd │ │ └── transparency │ │ │ ├── data │ │ │ └── moonwalk.jpg │ │ │ └── main.pd │ ├── input │ │ ├── keyboard │ │ │ └── main.pd │ │ └── mouse2d │ │ │ └── main.pd │ ├── math │ │ ├── distance2d │ │ │ └── main.pd │ │ ├── map │ │ │ └── main.pd │ │ └── noiseWave │ │ │ └── main.pd │ ├── motion │ │ ├── bounce │ │ │ └── main.pd │ │ ├── brownian │ │ │ └── main.pd │ │ └── cubes │ │ │ └── main.pd │ ├── pd │ │ ├── metro │ │ │ └── main.pd │ │ ├── misc │ │ │ └── main.pd │ │ └── sysgui │ │ │ └── main.pd │ ├── shader │ │ ├── displacementMap │ │ │ ├── data │ │ │ │ ├── shadersES2 │ │ │ │ │ ├── shader.frag │ │ │ │ │ └── shader.vert │ │ │ │ ├── shadersGL2 │ │ │ │ │ ├── shader.frag │ │ │ │ │ └── shader.vert │ │ │ │ └── shadersGL3 │ │ │ │ │ ├── shader.frag │ │ │ │ │ └── shader.vert │ │ │ ├── displacementMap.lua │ │ │ └── main.pd │ │ ├── geometryShader │ │ │ ├── data │ │ │ │ └── shaders │ │ │ │ │ ├── frag.glsl │ │ │ │ │ ├── geom.glsl │ │ │ │ │ └── vert.glsl │ │ │ ├── geometryShader.lua │ │ │ └── main.pd │ │ ├── glslSandbox │ │ │ ├── data │ │ │ │ ├── test1.frag │ │ │ │ ├── test1.vert │ │ │ │ ├── test2.frag │ │ │ │ ├── test2.vert │ │ │ │ ├── test3.frag │ │ │ │ ├── test3.vert │ │ │ │ ├── test4.frag │ │ │ │ ├── test4.vert │ │ │ │ ├── test5.frag │ │ │ │ ├── test5.vert │ │ │ │ ├── test6.frag │ │ │ │ ├── test6.vert │ │ │ │ ├── test7.frag │ │ │ │ └── test7.vert │ │ │ └── main.pd │ │ └── simpleColorQuad │ │ │ ├── data │ │ │ ├── shadersES2 │ │ │ │ ├── shader.frag │ │ │ │ └── shader.vert │ │ │ ├── shadersGL2 │ │ │ │ ├── shader.frag │ │ │ │ └── shader.vert │ │ │ └── shadersGL3 │ │ │ │ ├── shader.frag │ │ │ │ └── shader.vert │ │ │ ├── main.pd │ │ │ └── simpleColorQuad.lua │ ├── shape │ │ ├── bezier │ │ │ └── main.pd │ │ ├── graphicsExample │ │ │ ├── graphicsExample.lua │ │ │ └── main.pd │ │ ├── polygon │ │ │ └── main.pd │ │ ├── polygonExample │ │ │ ├── main.pd │ │ │ └── polygonExample.lua │ │ ├── shapePrimitives │ │ │ └── main.pd │ │ └── star │ │ │ └── main.pd │ ├── simulate │ │ └── simpleParticleSystem │ │ │ └── main.pd │ ├── text │ │ ├── drawFontString │ │ │ ├── data │ │ │ │ ├── DejaVuSansMono.ttf │ │ │ │ └── Sansation.ttf │ │ │ └── main.pd │ │ ├── fontsExample │ │ │ ├── data │ │ │ │ ├── frabk.ttf │ │ │ │ └── verdana.ttf │ │ │ ├── fontsExample.lua │ │ │ └── main.pd │ │ ├── letters │ │ │ ├── data │ │ │ │ └── SourceCodePro-Regular.ttf │ │ │ └── main.pd │ │ └── unicode │ │ │ ├── data │ │ │ └── gungsuh.ttf │ │ │ └── main.pd │ └── video │ │ ├── asciiVideoExample │ │ ├── asciiVideoExample.lua │ │ ├── data │ │ │ └── Courier New Bold.ttf │ │ └── main.pd │ │ ├── loadDisplayVideo │ │ ├── data │ │ │ └── fingers.mov │ │ └── main.pd │ │ ├── videoGrabberExample │ │ └── main.pd │ │ └── videoPlayerExample │ │ ├── data │ │ └── fingers.mov │ │ ├── main.pd │ │ └── videoPlayerExample.lua ├── ofelia-object-help.lua ├── ofelia-object-help.pd └── ofelia_textwindow.tcl ├── ofxaddons_thumbnail.png ├── scripts ├── Emscripten │ ├── updateOF.sh │ └── updateOF │ │ └── config.emscripten.default.mk ├── Linux64 │ ├── updateOF.sh │ └── updateOF │ │ ├── config.linux64.default.mk │ │ ├── kiss │ │ ├── Makefile.armv6l │ │ ├── include │ │ │ ├── kiss_fft.h │ │ │ └── kiss_fftr.h │ │ ├── lib │ │ │ └── linux64 │ │ │ │ └── libkiss.a │ │ ├── license │ │ │ └── COPYING │ │ └── src │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── kiss_fft.c │ │ │ └── kiss_fftr.c │ │ └── tess2 │ │ ├── Makefile.armv6l │ │ ├── Makefile.armv7l │ │ ├── include │ │ └── tesselator.h │ │ ├── lib │ │ └── linux64 │ │ │ ├── libtess2.a │ │ │ └── libtess2.a-without-fPIC │ │ └── license │ │ └── LICENSE.txt ├── common │ ├── glew.h │ ├── ofxOfeliaPdBindings.i │ ├── updateGL.cpp │ ├── updateGL.sh │ └── updatePdBindings.sh └── release │ └── release.sh └── src ├── ofxOfelia.cpp ├── ofxOfelia.h ├── ofxOfeliaClient.cpp ├── ofxOfeliaClient.h ├── ofxOfeliaCreator.cpp ├── ofxOfeliaCreator.h ├── ofxOfeliaData.cpp ├── ofxOfeliaData.h ├── ofxOfeliaDefine.cpp ├── ofxOfeliaDefine.h ├── ofxOfeliaEvents.cpp ├── ofxOfeliaEvents.h ├── ofxOfeliaExists.cpp ├── ofxOfeliaExists.h ├── ofxOfeliaFunction.cpp ├── ofxOfeliaFunction.h ├── ofxOfeliaGL.cpp ├── ofxOfeliaGL.h ├── ofxOfeliaGet.cpp ├── ofxOfeliaGet.h ├── ofxOfeliaIO.cpp ├── ofxOfeliaIO.h ├── ofxOfeliaLog.cpp ├── ofxOfeliaLog.h ├── ofxOfeliaLua.cpp ├── ofxOfeliaLua.h ├── ofxOfeliaPdBindings.cpp ├── ofxOfeliaPdBindings.h ├── ofxOfeliaSet.cpp ├── ofxOfeliaSet.h ├── ofxOfeliaSetup.cpp ├── ofxOfeliaSetup.h ├── ofxOfeliaSignal.cpp ├── ofxOfeliaSignal.h ├── ofxOfeliaTextBuf.cpp └── ofxOfeliaTextBuf.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | -------------------------------------------------------------------------------- /AndroidExample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxOfelia 2 | -------------------------------------------------------------------------------- /AndroidExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AndroidExample/bin/data/pd/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AndroidExample/bin/data/pd/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/bin/data/pd/main.pd -------------------------------------------------------------------------------- /AndroidExample/bin/data/pd/polygonExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/bin/data/pd/polygonExample.lua -------------------------------------------------------------------------------- /AndroidExample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/build.gradle -------------------------------------------------------------------------------- /AndroidExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidExample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AndroidExample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/gradlew -------------------------------------------------------------------------------- /AndroidExample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/gradlew.bat -------------------------------------------------------------------------------- /AndroidExample/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/local.properties -------------------------------------------------------------------------------- /AndroidExample/res/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/res/drawable/ic_launcher.png -------------------------------------------------------------------------------- /AndroidExample/res/layout/main_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/res/layout/main_layout.xml -------------------------------------------------------------------------------- /AndroidExample/res/menu/main_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/res/menu/main_layout.xml -------------------------------------------------------------------------------- /AndroidExample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/res/values-v11/styles.xml -------------------------------------------------------------------------------- /AndroidExample/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/res/values-v14/styles.xml -------------------------------------------------------------------------------- /AndroidExample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidExample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/res/values/styles.xml -------------------------------------------------------------------------------- /AndroidExample/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/settings.gradle -------------------------------------------------------------------------------- /AndroidExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/src/main.cpp -------------------------------------------------------------------------------- /AndroidExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/src/ofApp.cpp -------------------------------------------------------------------------------- /AndroidExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/src/ofApp.h -------------------------------------------------------------------------------- /AndroidExample/srcJava/cc/openframeworks/AndroidExample/OFActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/AndroidExample/srcJava/cc/openframeworks/AndroidExample/OFActivity.java -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /EmscriptenExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/EmscriptenExample/Makefile -------------------------------------------------------------------------------- /EmscriptenExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxOfelia 2 | -------------------------------------------------------------------------------- /EmscriptenExample/bin/data/pd/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EmscriptenExample/bin/data/pd/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/EmscriptenExample/bin/data/pd/main.pd -------------------------------------------------------------------------------- /EmscriptenExample/bin/data/pd/polygonExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/EmscriptenExample/bin/data/pd/polygonExample.lua -------------------------------------------------------------------------------- /EmscriptenExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/EmscriptenExample/config.make -------------------------------------------------------------------------------- /EmscriptenExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/EmscriptenExample/src/main.cpp -------------------------------------------------------------------------------- /EmscriptenExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/EmscriptenExample/src/ofApp.cpp -------------------------------------------------------------------------------- /EmscriptenExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/EmscriptenExample/src/ofApp.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LinuxExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExample/Makefile -------------------------------------------------------------------------------- /LinuxExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxOfelia 2 | -------------------------------------------------------------------------------- /LinuxExample/bin/data/pd/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LinuxExample/bin/data/pd/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExample/bin/data/pd/main.pd -------------------------------------------------------------------------------- /LinuxExample/bin/data/pd/polygonExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExample/bin/data/pd/polygonExample.lua -------------------------------------------------------------------------------- /LinuxExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExample/config.make -------------------------------------------------------------------------------- /LinuxExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExample/src/main.cpp -------------------------------------------------------------------------------- /LinuxExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExample/src/ofApp.cpp -------------------------------------------------------------------------------- /LinuxExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExample/src/ofApp.h -------------------------------------------------------------------------------- /LinuxExternal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExternal/Makefile -------------------------------------------------------------------------------- /LinuxExternal/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExternal/addons.make -------------------------------------------------------------------------------- /LinuxExternal/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LinuxExternal/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/LinuxExternal/config.make -------------------------------------------------------------------------------- /LinuxExternal/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/README.md -------------------------------------------------------------------------------- /WindowsExample/WindowsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/WindowsExample.sln -------------------------------------------------------------------------------- /WindowsExample/WindowsExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/WindowsExample.vcxproj -------------------------------------------------------------------------------- /WindowsExample/WindowsExample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/WindowsExample.vcxproj.filters -------------------------------------------------------------------------------- /WindowsExample/WindowsExample.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/WindowsExample.vcxproj.user -------------------------------------------------------------------------------- /WindowsExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxOfelia 2 | -------------------------------------------------------------------------------- /WindowsExample/bin/Win32/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/bin/Win32/libwinpthread-1.dll -------------------------------------------------------------------------------- /WindowsExample/bin/Win32/pd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/bin/Win32/pd.dll -------------------------------------------------------------------------------- /WindowsExample/bin/Win32/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/bin/Win32/pthreadVC2.dll -------------------------------------------------------------------------------- /WindowsExample/bin/Win64/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/bin/Win64/libwinpthread-1.dll -------------------------------------------------------------------------------- /WindowsExample/bin/Win64/pd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/bin/Win64/pd.dll -------------------------------------------------------------------------------- /WindowsExample/bin/Win64/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/bin/Win64/pthreadVC2.dll -------------------------------------------------------------------------------- /WindowsExample/bin/data/pd/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WindowsExample/bin/data/pd/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/bin/data/pd/main.pd -------------------------------------------------------------------------------- /WindowsExample/bin/data/pd/polygonExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/bin/data/pd/polygonExample.lua -------------------------------------------------------------------------------- /WindowsExample/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/icon.rc -------------------------------------------------------------------------------- /WindowsExample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages.config -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/.signature.p7s -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/configurations.autopkg -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/ChangeLog -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/PortabilityIssues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/PortabilityIssues.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/index.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthreadCancelableWait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthreadCancelableWait.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_attr_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_attr_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_attr_setstackaddr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_attr_setstackaddr.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_attr_setstacksize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_attr_setstacksize.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_barrier_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_barrier_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_barrier_wait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_barrier_wait.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_barrierattr_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_barrierattr_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_barrierattr_setpshared.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_barrierattr_setpshared.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_cancel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_cancel.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_cleanup_push.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_cleanup_push.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_cond_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_cond_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_condattr_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_condattr_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_condattr_setpshared.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_condattr_setpshared.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_create.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_delay_np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_delay_np.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_detach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_detach.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_equal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_equal.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_exit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_exit.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_getunique_np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_getunique_np.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_getw32threadhandle_np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_getw32threadhandle_np.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_join.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_key_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_key_create.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_kill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_kill.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_mutex_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_mutex_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_mutexattr_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_mutexattr_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_mutexattr_setpshared.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_mutexattr_setpshared.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_num_processors_np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_num_processors_np.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_once.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_once.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_rdlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_rdlock.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_timedrdlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_timedrdlock.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_timedwrlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_timedwrlock.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_unlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_unlock.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_wrlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlock_wrlock.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlockattr_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlockattr_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlockattr_setpshared.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_rwlockattr_setpshared.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_self.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_self.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_setcancelstate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_setcancelstate.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_setcanceltype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_setcanceltype.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_setconcurrency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_setconcurrency.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_setschedparam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_setschedparam.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_spin_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_spin_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_spin_lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_spin_lock.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_spin_unlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_spin_unlock.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_timechange_handler_np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_timechange_handler_np.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_win32_attach_detach_np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_win32_attach_detach_np.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_win32_test_features_np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/pthread_win32_test_features_np.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sched_get_priority_max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sched_get_priority_max.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sched_getscheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sched_getscheduler.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sched_setscheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sched_setscheduler.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sched_yield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sched_yield.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sem_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/docs/sem_init.html -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/include/need_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/include/need_errno.h -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/include/pthread.h -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/include/sched.h -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/include/semaphore.h -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v100/Win32/Debug/dynamic/cdecl/libpthread.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v100/Win32/Debug/dynamic/cdecl/libpthread.lib -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v100/Win32/Release/dynamic/cdecl/libpthread.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v100/Win32/Release/dynamic/cdecl/libpthread.lib -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v100/x64/Debug/dynamic/cdecl/libpthread.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v100/x64/Debug/dynamic/cdecl/libpthread.lib -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v100/x64/Release/dynamic/cdecl/libpthread.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v100/x64/Release/dynamic/cdecl/libpthread.lib -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v110/Win32/Debug/dynamic/cdecl/libpthread.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v110/Win32/Debug/dynamic/cdecl/libpthread.lib -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v110/Win32/Release/dynamic/cdecl/libpthread.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v110/Win32/Release/dynamic/cdecl/libpthread.lib -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v110/x64/Debug/dynamic/cdecl/libpthread.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v110/x64/Debug/dynamic/cdecl/libpthread.lib -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v110/x64/Release/dynamic/cdecl/libpthread.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/lib/v110/x64/Release/dynamic/cdecl/libpthread.lib -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/build/native/pthreads.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/build/native/pthreads.targets -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.2.9.1.4/pthreads.2.9.1.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.2.9.1.4/pthreads.2.9.1.4.nupkg -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.redist.2.9.1.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.redist.2.9.1.4/.signature.p7s -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.redist.2.9.1.4/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.redist.2.9.1.4/build/configurations.autopkg -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.redist.2.9.1.4/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.redist.2.9.1.4/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.redist.2.9.1.4/build/native/pthreads.redist.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.redist.2.9.1.4/build/native/pthreads.redist.targets -------------------------------------------------------------------------------- /WindowsExample/packages/pthreads.redist.2.9.1.4/pthreads.redist.2.9.1.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/packages/pthreads.redist.2.9.1.4/pthreads.redist.2.9.1.4.nupkg -------------------------------------------------------------------------------- /WindowsExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/src/main.cpp -------------------------------------------------------------------------------- /WindowsExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/src/ofApp.cpp -------------------------------------------------------------------------------- /WindowsExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExample/src/ofApp.h -------------------------------------------------------------------------------- /WindowsExternal/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExternal/addons.make -------------------------------------------------------------------------------- /WindowsExternal/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WindowsExternal/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExternal/icon.rc -------------------------------------------------------------------------------- /WindowsExternal/ofelia.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExternal/ofelia.sln -------------------------------------------------------------------------------- /WindowsExternal/ofelia.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExternal/ofelia.vcxproj -------------------------------------------------------------------------------- /WindowsExternal/ofelia.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExternal/ofelia.vcxproj.filters -------------------------------------------------------------------------------- /WindowsExternal/ofelia.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/WindowsExternal/ofelia.vcxproj.user -------------------------------------------------------------------------------- /WindowsExternal/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/addon_config.mk -------------------------------------------------------------------------------- /doc/ESMERIL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/ESMERIL.png -------------------------------------------------------------------------------- /doc/Emscripten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/Emscripten.png -------------------------------------------------------------------------------- /doc/GLSL.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/GLSL.frag -------------------------------------------------------------------------------- /doc/GLSL.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/GLSL.pd -------------------------------------------------------------------------------- /doc/GLSL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/GLSL.png -------------------------------------------------------------------------------- /doc/GLSL.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/GLSL.vert -------------------------------------------------------------------------------- /doc/Iteration.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/Iteration.pd -------------------------------------------------------------------------------- /doc/Iteration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/Iteration.png -------------------------------------------------------------------------------- /doc/Logo.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/Logo.pd -------------------------------------------------------------------------------- /doc/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/Logo.png -------------------------------------------------------------------------------- /doc/Ofelia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/Ofelia.png -------------------------------------------------------------------------------- /doc/Ofelia.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/Ofelia.psd -------------------------------------------------------------------------------- /doc/Ofelia_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/Ofelia_trans.png -------------------------------------------------------------------------------- /doc/ofxOfelia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/doc/ofxOfelia.png -------------------------------------------------------------------------------- /iOSExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/Project.xcconfig -------------------------------------------------------------------------------- /iOSExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxOfelia 2 | -------------------------------------------------------------------------------- /iOSExample/bin/data/Default@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/bin/data/Default@2x~ipad.png -------------------------------------------------------------------------------- /iOSExample/bin/data/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/bin/data/Default@2x~iphone.png -------------------------------------------------------------------------------- /iOSExample/bin/data/Default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/bin/data/Default~ipad.png -------------------------------------------------------------------------------- /iOSExample/bin/data/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/bin/data/Default~iphone.png -------------------------------------------------------------------------------- /iOSExample/bin/data/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/bin/data/Icon-72.png -------------------------------------------------------------------------------- /iOSExample/bin/data/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/bin/data/Icon-72@2x.png -------------------------------------------------------------------------------- /iOSExample/bin/data/pd/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOSExample/bin/data/pd/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/bin/data/pd/main.pd -------------------------------------------------------------------------------- /iOSExample/bin/data/pd/polygonExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/bin/data/pd/polygonExample.lua -------------------------------------------------------------------------------- /iOSExample/iOSExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/iOSExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSExample/iOSExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/iOSExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSExample/iOSExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/iOSExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iOSExample/iOSExample.xcodeproj/xcshareddata/xcschemes/iOSExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/iOSExample.xcodeproj/xcshareddata/xcschemes/iOSExample.xcscheme -------------------------------------------------------------------------------- /iOSExample/iOSExample.xcodeproj/xcuserdata/cuinjune.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/iOSExample.xcodeproj/xcuserdata/cuinjune.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/Icon@3x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall-40.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall-40@2x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall-40@3x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall@2x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/AppIcon.appiconset/IconSmall@3x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Background.imageset/Contents.json -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Background.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Background.imageset/background.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Background.imageset/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Background.imageset/background@2x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Background.imageset/background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Background.imageset/background@3x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Contents.json -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Landscape@3x~iphone6+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Landscape@3x~iphone6+.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait@2x~iphone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait@2x~iphone4.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait@2x~iphone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait@2x~iphone5.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait@2x~iphone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait@2x~iphone6.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait@3x~iphone6+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait@3x~iphone6+.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Brand Assets.launchimage/Default-portrait~iphone.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Logo.imageset/logo.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Logo.imageset/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Logo.imageset/logo@2x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/Images.xcassets/Logo.imageset/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/Images.xcassets/Logo.imageset/logo@3x.png -------------------------------------------------------------------------------- /iOSExample/mediaAssets/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/mediaAssets/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOSExample/ofxiOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/ofxiOS-Info.plist -------------------------------------------------------------------------------- /iOSExample/ofxiOS_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/ofxiOS_Prefix.pch -------------------------------------------------------------------------------- /iOSExample/src/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/src/main.mm -------------------------------------------------------------------------------- /iOSExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/src/ofApp.h -------------------------------------------------------------------------------- /iOSExample/src/ofApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/iOSExample/src/ofApp.mm -------------------------------------------------------------------------------- /libs/ofxLua/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/.gitignore -------------------------------------------------------------------------------- /libs/ofxLua/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/.gitmodules -------------------------------------------------------------------------------- /libs/ofxLua/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/CHANGES.txt -------------------------------------------------------------------------------- /libs/ofxLua/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/LICENSE.txt -------------------------------------------------------------------------------- /libs/ofxLua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/README.md -------------------------------------------------------------------------------- /libs/ofxLua/addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/addon_config.mk -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/COPYRIGHT -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lapi.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lapi.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lauxlib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lauxlib.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lbaselib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lbitlib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lcode.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lcode.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lcorolib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lctype.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lctype.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ldblib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ldebug.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ldebug.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ldo.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ldo.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ldump.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lfunc.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lfunc.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lgc.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lgc.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/linit.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/liolib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/llex.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/llex.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/llimits.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lmathlib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lmem.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lmem.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/loadlib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lobject.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lobject.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lopcodes.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lopcodes.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/loslib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lparser.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lparser.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lprefix.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lstate.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lstate.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lstring.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lstring.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lstrlib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ltable.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ltable.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ltablib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ltm.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/ltm.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lua.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lua.hpp -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/luaconf.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lualib.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lundump.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lundump.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lutf8lib.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lvm.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lvm.h -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lzio.c -------------------------------------------------------------------------------- /libs/ofxLua/libs/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/libs/lua/lzio.h -------------------------------------------------------------------------------- /libs/ofxLua/src/bindings/desktop/ofBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/src/bindings/desktop/ofBindings.cpp -------------------------------------------------------------------------------- /libs/ofxLua/src/bindings/glmBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/src/bindings/glmBindings.cpp -------------------------------------------------------------------------------- /libs/ofxLua/src/bindings/ios/ofBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/src/bindings/ios/ofBindings.cpp -------------------------------------------------------------------------------- /libs/ofxLua/src/bindings/linuxarm/ofBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/src/bindings/linuxarm/ofBindings.cpp -------------------------------------------------------------------------------- /libs/ofxLua/src/bindings/ofBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/src/bindings/ofBindings.h -------------------------------------------------------------------------------- /libs/ofxLua/src/ofxLua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/src/ofxLua.cpp -------------------------------------------------------------------------------- /libs/ofxLua/src/ofxLua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/src/ofxLua.h -------------------------------------------------------------------------------- /libs/ofxLua/src/ofxLuaFileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/src/ofxLuaFileWriter.cpp -------------------------------------------------------------------------------- /libs/ofxLua/src/ofxLuaFileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/src/ofxLuaFileWriter.h -------------------------------------------------------------------------------- /libs/ofxLua/swig/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/LICENSE.txt -------------------------------------------------------------------------------- /libs/ofxLua/swig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/Makefile -------------------------------------------------------------------------------- /libs/ofxLua/swig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/README.md -------------------------------------------------------------------------------- /libs/ofxLua/swig/glm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/glm.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/glm/constants.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/glm/constants.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/glm/functions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/glm/functions.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/glm/mat3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/glm/mat3.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/glm/mat4.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/glm/mat4.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/glm/quat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/glm/quat.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/glm/vec2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/glm/vec2.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/glm/vec3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/glm/vec3.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/glm/vec4.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/glm/vec4.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/attributes.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/attributes.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/deprecated.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/deprecated.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/lang/lua/lua.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/lang/lua/lua.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/lang/lua/lua_code.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/lang/lua/lua_code.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/lang/lua/std_filesystem_path.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/lang/lua/std_filesystem_path.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/lang/python/python.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/lang/python/python.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/lang/python/python_code.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/lang/python/python_code.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/lang/python/std_filesystem_path.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/lang/python/std_filesystem_path.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/3d.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/3d.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/app.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/app.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/communication.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/communication.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/events.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/events.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/gl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/gl.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/graphics.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/graphics.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/main.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/main.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/math.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/math.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/sound.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/sound.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/types.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/types.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/utils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/utils.i -------------------------------------------------------------------------------- /libs/ofxLua/swig/openFrameworks/openFrameworks/video.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxLua/swig/openFrameworks/openFrameworks/video.i -------------------------------------------------------------------------------- /libs/ofxMidi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/.gitignore -------------------------------------------------------------------------------- /libs/ofxMidi/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/CHANGES.txt -------------------------------------------------------------------------------- /libs/ofxMidi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/LICENSE.txt -------------------------------------------------------------------------------- /libs/ofxMidi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/README.md -------------------------------------------------------------------------------- /libs/ofxMidi/addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/addon_config.mk -------------------------------------------------------------------------------- /libs/ofxMidi/libs/pgmidi/PGArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/pgmidi/PGArc.h -------------------------------------------------------------------------------- /libs/ofxMidi/libs/pgmidi/PGMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/pgmidi/PGMidi.h -------------------------------------------------------------------------------- /libs/ofxMidi/libs/pgmidi/PGMidi.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/pgmidi/PGMidi.mm -------------------------------------------------------------------------------- /libs/ofxMidi/libs/pgmidi/PGMidiAllSources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/pgmidi/PGMidiAllSources.h -------------------------------------------------------------------------------- /libs/ofxMidi/libs/pgmidi/PGMidiAllSources.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/pgmidi/PGMidiAllSources.mm -------------------------------------------------------------------------------- /libs/ofxMidi/libs/pgmidi/PGMidiFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/pgmidi/PGMidiFind.h -------------------------------------------------------------------------------- /libs/ofxMidi/libs/pgmidi/PGMidiFind.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/pgmidi/PGMidiFind.mm -------------------------------------------------------------------------------- /libs/ofxMidi/libs/pgmidi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/pgmidi/README.md -------------------------------------------------------------------------------- /libs/ofxMidi/libs/pgmidi/iOSVersionDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/pgmidi/iOSVersionDetection.h -------------------------------------------------------------------------------- /libs/ofxMidi/libs/rtmidi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/rtmidi/README.md -------------------------------------------------------------------------------- /libs/ofxMidi/libs/rtmidi/RtMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/rtmidi/RtMidi.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/libs/rtmidi/RtMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/libs/rtmidi/RtMidi.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/desktop/ofxRtMidiIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/desktop/ofxRtMidiIn.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/src/desktop/ofxRtMidiIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/desktop/ofxRtMidiIn.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/desktop/ofxRtMidiOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/desktop/ofxRtMidiOut.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/src/desktop/ofxRtMidiOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/desktop/ofxRtMidiOut.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiContext.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiContext.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiContext.mm -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiDelegate.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiDelegate.mm -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiIn.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiIn.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiIn.mm -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiOut.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiOut.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiOut.mm -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiSourceDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiSourceDelegate.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ios/ofxPGMidiSourceDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ios/ofxPGMidiSourceDelegate.mm -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxBaseMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxBaseMidi.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxBaseMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxBaseMidi.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidi.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidi.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiClock.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiClock.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiConstants.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiIn.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiIn.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiMessage.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiMessage.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiOut.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiOut.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiTimecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiTimecode.cpp -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiTimecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiTimecode.h -------------------------------------------------------------------------------- /libs/ofxMidi/src/ofxMidiTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxMidi/src/ofxMidiTypes.h -------------------------------------------------------------------------------- /libs/ofxPd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/.gitignore -------------------------------------------------------------------------------- /libs/ofxPd/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/CHANGES.txt -------------------------------------------------------------------------------- /libs/ofxPd/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/LICENSE.txt -------------------------------------------------------------------------------- /libs/ofxPd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/README.md -------------------------------------------------------------------------------- /libs/ofxPd/addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/addon_config.mk -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/cpp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/cpp/LICENSE.txt -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/cpp/PdBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/cpp/PdBase.hpp -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/cpp/PdMidiReceiver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/cpp/PdMidiReceiver.hpp -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/cpp/PdReceiver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/cpp/PdReceiver.hpp -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/cpp/PdTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/cpp/PdTypes.hpp -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/lib/Win32/libpd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/lib/Win32/libpd.lib -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/lib/Win32/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/lib/Win32/pthreadVC2.lib -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/lib/Win64/libpd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/lib/Win64/libpd.lib -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/lib/Win64/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/lib/Win64/pthreadVC2.lib -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/s_libpdmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/s_libpdmidi.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/util/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/util/ringbuffer.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/util/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/util/ringbuffer.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/util/z_print_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/util/z_print_util.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/util/z_print_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/util/z_print_util.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/util/z_queued.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/util/z_queued.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/util/z_queued.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/util/z_queued.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/x_libpdreceive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/x_libpdreceive.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/x_libpdreceive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/x_libpdreceive.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/z_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/z_hooks.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/z_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/z_hooks.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/z_libpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/z_libpd.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/libpd_wrapper/z_libpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/libpd_wrapper/z_libpd.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/README.txt -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/bob/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/bob/README.txt -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/bob/bob~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/bob/bob~.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/bonk/bonk~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/bonk/bonk~.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/bonk/templates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/bonk/templates.txt -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/choice/choice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/choice/choice.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/fiddle/fiddle~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/fiddle/fiddle~.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/loop/loop~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/loop/loop~.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/lrshift/lrshift~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/lrshift/lrshift~.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/pd/binarymsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/pd/binarymsg.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/pd/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/pd/notes.txt -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/pd/pdsched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/pd/pdsched.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/pd/pd~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/pd/pd~.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/pique/pique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/pique/pique.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/sigmund/sigmund~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/sigmund/sigmund~.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/extra/stdout/stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/extra/stdout/stdout.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_arithmetic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_arithmetic.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_array.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_ctl.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_dac.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_delay.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_fft.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_fft_fftsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_fft_fftsg.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_filter.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_global.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_math.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_misc.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_osc.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_resample.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_soundfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_soundfile.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/d_ugen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/d_ugen.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_all_guis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_all_guis.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_all_guis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_all_guis.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_array.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_bang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_bang.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_canvas.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_canvas.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_clone.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_editor.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_editor_extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_editor_extras.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_graph.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_guiconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_guiconnect.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_hdial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_hdial.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_hslider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_hslider.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_io.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_mycanvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_mycanvas.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_numbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_numbox.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_readwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_readwrite.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_rtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_rtext.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_scalar.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_template.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_text.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_toggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_toggle.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_traversal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_traversal.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_undo.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_undo.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_vdial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_vdial.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_vslider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_vslider.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/g_vumeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/g_vumeter.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_atom.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_binbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_binbuf.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_class.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_conf.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_glob.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_imp.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_memory.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_obj.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_pd.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_pd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_pd.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/m_sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/m_sched.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_audio.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_audio_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_audio_dummy.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_inter.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_loader.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_main.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_net.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_net.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_path.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_print.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_stuff.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_utf8.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/s_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/s_utf8.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_acoustics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_acoustics.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_arithmetic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_arithmetic.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_array.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_connective.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_connective.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_gui.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_interface.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_list.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_midi.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_misc.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_net.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_scalar.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_text.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_time.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_vexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_vexp.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_vexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_vexp.h -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_vexp_fun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_vexp_fun.c -------------------------------------------------------------------------------- /libs/ofxPd/libs/libpd/pure-data/src/x_vexp_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/libs/libpd/pure-data/src/x_vexp_if.c -------------------------------------------------------------------------------- /libs/ofxPd/src/ofxPd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/src/ofxPd.cpp -------------------------------------------------------------------------------- /libs/ofxPd/src/ofxPd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/libs/ofxPd/src/ofxPd.h -------------------------------------------------------------------------------- /macOSExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/Makefile -------------------------------------------------------------------------------- /macOSExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/Project.xcconfig -------------------------------------------------------------------------------- /macOSExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxOfelia 2 | -------------------------------------------------------------------------------- /macOSExample/bin/data/pd/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macOSExample/bin/data/pd/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/bin/data/pd/main.pd -------------------------------------------------------------------------------- /macOSExample/bin/data/pd/polygonExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/bin/data/pd/polygonExample.lua -------------------------------------------------------------------------------- /macOSExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/config.make -------------------------------------------------------------------------------- /macOSExample/macOSExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/macOSExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macOSExample/macOSExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/macOSExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macOSExample/macOSExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/macOSExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macOSExample/macOSExample.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/macOSExample.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /macOSExample/macOSExample.xcodeproj/xcshareddata/xcschemes/macOSExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/macOSExample.xcodeproj/xcshareddata/xcschemes/macOSExample Debug.xcscheme -------------------------------------------------------------------------------- /macOSExample/macOSExample.xcodeproj/xcshareddata/xcschemes/macOSExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/macOSExample.xcodeproj/xcshareddata/xcschemes/macOSExample Release.xcscheme -------------------------------------------------------------------------------- /macOSExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /macOSExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/src/main.cpp -------------------------------------------------------------------------------- /macOSExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/src/ofApp.cpp -------------------------------------------------------------------------------- /macOSExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExample/src/ofApp.h -------------------------------------------------------------------------------- /macOSExternal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/Makefile -------------------------------------------------------------------------------- /macOSExternal/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/Project.xcconfig -------------------------------------------------------------------------------- /macOSExternal/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/addons.make -------------------------------------------------------------------------------- /macOSExternal/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macOSExternal/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/config.make -------------------------------------------------------------------------------- /macOSExternal/ofelia.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/ofelia.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macOSExternal/ofelia.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/ofelia.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macOSExternal/ofelia.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/ofelia.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macOSExternal/ofelia.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/ofelia.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /macOSExternal/ofelia.xcodeproj/xcuserdata/cuinjune.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/ofelia.xcodeproj/xcuserdata/cuinjune.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /macOSExternal/ofelia.xcodeproj/xcuserdata/cuinjune.xcuserdatad/xcschemes/ofelia.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/ofelia.xcodeproj/xcuserdata/cuinjune.xcuserdatad/xcschemes/ofelia.xcscheme -------------------------------------------------------------------------------- /macOSExternal/ofelia.xcodeproj/xcuserdata/cuinjune.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/ofelia.xcodeproj/xcuserdata/cuinjune.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /macOSExternal/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/macOSExternal/openFrameworks-Info.plist -------------------------------------------------------------------------------- /macOSExternal/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofelia/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/CHANGES.txt -------------------------------------------------------------------------------- /ofelia/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/LICENSE.txt -------------------------------------------------------------------------------- /ofelia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/README.md -------------------------------------------------------------------------------- /ofelia/abs/ofBackPressed-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofBackPressed-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofBackPressed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofBackPressed.lua -------------------------------------------------------------------------------- /ofelia/abs/ofBackPressed.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofBackPressed.pd -------------------------------------------------------------------------------- /ofelia/abs/ofCancelPressed-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofCancelPressed-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofCancelPressed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofCancelPressed.lua -------------------------------------------------------------------------------- /ofelia/abs/ofCancelPressed.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofCancelPressed.pd -------------------------------------------------------------------------------- /ofelia/abs/ofDeviceOrientationChanged-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofDeviceOrientationChanged-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofDeviceOrientationChanged.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofDeviceOrientationChanged.lua -------------------------------------------------------------------------------- /ofelia/abs/ofDeviceOrientationChanged.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofDeviceOrientationChanged.pd -------------------------------------------------------------------------------- /ofelia/abs/ofDragged-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofDragged-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofDragged.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofDragged.lua -------------------------------------------------------------------------------- /ofelia/abs/ofDragged.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofDragged.pd -------------------------------------------------------------------------------- /ofelia/abs/ofDraw-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofDraw-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofDraw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofDraw.lua -------------------------------------------------------------------------------- /ofelia/abs/ofDraw.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofDraw.pd -------------------------------------------------------------------------------- /ofelia/abs/ofExit-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofExit-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofExit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofExit.lua -------------------------------------------------------------------------------- /ofelia/abs/ofExit.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofExit.pd -------------------------------------------------------------------------------- /ofelia/abs/ofGotFocus-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofGotFocus-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofGotFocus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofGotFocus.lua -------------------------------------------------------------------------------- /ofelia/abs/ofGotFocus.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofGotFocus.pd -------------------------------------------------------------------------------- /ofelia/abs/ofGotMemoryWarning-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofGotMemoryWarning-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofGotMemoryWarning.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofGotMemoryWarning.lua -------------------------------------------------------------------------------- /ofelia/abs/ofGotMemoryWarning.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofGotMemoryWarning.pd -------------------------------------------------------------------------------- /ofelia/abs/ofKeyPressed-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofKeyPressed-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofKeyPressed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofKeyPressed.lua -------------------------------------------------------------------------------- /ofelia/abs/ofKeyPressed.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofKeyPressed.pd -------------------------------------------------------------------------------- /ofelia/abs/ofKeyReleased-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofKeyReleased-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofKeyReleased.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofKeyReleased.lua -------------------------------------------------------------------------------- /ofelia/abs/ofKeyReleased.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofKeyReleased.pd -------------------------------------------------------------------------------- /ofelia/abs/ofLaunchedWithURL-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofLaunchedWithURL-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofLaunchedWithURL.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofLaunchedWithURL.lua -------------------------------------------------------------------------------- /ofelia/abs/ofLaunchedWithURL.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofLaunchedWithURL.pd -------------------------------------------------------------------------------- /ofelia/abs/ofLostFocus-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofLostFocus-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofLostFocus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofLostFocus.lua -------------------------------------------------------------------------------- /ofelia/abs/ofLostFocus.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofLostFocus.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMessageReceived-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMessageReceived-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMessageReceived.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMessageReceived.lua -------------------------------------------------------------------------------- /ofelia/abs/ofMessageReceived.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMessageReceived.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseDragged-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseDragged-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseDragged.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseDragged.lua -------------------------------------------------------------------------------- /ofelia/abs/ofMouseDragged.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseDragged.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseEntered-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseEntered-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseEntered.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseEntered.lua -------------------------------------------------------------------------------- /ofelia/abs/ofMouseEntered.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseEntered.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseExited-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseExited-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseExited.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseExited.lua -------------------------------------------------------------------------------- /ofelia/abs/ofMouseExited.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseExited.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseMoved-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseMoved-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseMoved.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseMoved.lua -------------------------------------------------------------------------------- /ofelia/abs/ofMouseMoved.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseMoved.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMousePressed-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMousePressed-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMousePressed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMousePressed.lua -------------------------------------------------------------------------------- /ofelia/abs/ofMousePressed.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMousePressed.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseReleased-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseReleased-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseReleased.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseReleased.lua -------------------------------------------------------------------------------- /ofelia/abs/ofMouseReleased.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseReleased.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseScrolled-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseScrolled-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofMouseScrolled.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseScrolled.lua -------------------------------------------------------------------------------- /ofelia/abs/ofMouseScrolled.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofMouseScrolled.pd -------------------------------------------------------------------------------- /ofelia/abs/ofOkPressed-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofOkPressed-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofOkPressed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofOkPressed.lua -------------------------------------------------------------------------------- /ofelia/abs/ofOkPressed.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofOkPressed.pd -------------------------------------------------------------------------------- /ofelia/abs/ofPause-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofPause-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofPause.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofPause.lua -------------------------------------------------------------------------------- /ofelia/abs/ofPause.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofPause.pd -------------------------------------------------------------------------------- /ofelia/abs/ofReloadTextures-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofReloadTextures-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofReloadTextures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofReloadTextures.lua -------------------------------------------------------------------------------- /ofelia/abs/ofReloadTextures.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofReloadTextures.pd -------------------------------------------------------------------------------- /ofelia/abs/ofResume-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofResume-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofResume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofResume.lua -------------------------------------------------------------------------------- /ofelia/abs/ofResume.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofResume.pd -------------------------------------------------------------------------------- /ofelia/abs/ofSetup-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofSetup-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofSetup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofSetup.lua -------------------------------------------------------------------------------- /ofelia/abs/ofSetup.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofSetup.pd -------------------------------------------------------------------------------- /ofelia/abs/ofStop-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofStop-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofStop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofStop.lua -------------------------------------------------------------------------------- /ofelia/abs/ofStop.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofStop.pd -------------------------------------------------------------------------------- /ofelia/abs/ofSwipe-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofSwipe-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofSwipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofSwipe.lua -------------------------------------------------------------------------------- /ofelia/abs/ofSwipe.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofSwipe.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchCancelled-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchCancelled-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchCancelled.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchCancelled.lua -------------------------------------------------------------------------------- /ofelia/abs/ofTouchCancelled.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchCancelled.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchDoubleTap-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchDoubleTap-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchDoubleTap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchDoubleTap.lua -------------------------------------------------------------------------------- /ofelia/abs/ofTouchDoubleTap.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchDoubleTap.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchDown-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchDown-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchDown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchDown.lua -------------------------------------------------------------------------------- /ofelia/abs/ofTouchDown.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchDown.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchMoved-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchMoved-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchMoved.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchMoved.lua -------------------------------------------------------------------------------- /ofelia/abs/ofTouchMoved.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchMoved.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchUp-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchUp-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofTouchUp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchUp.lua -------------------------------------------------------------------------------- /ofelia/abs/ofTouchUp.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofTouchUp.pd -------------------------------------------------------------------------------- /ofelia/abs/ofUpdate-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofUpdate-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofUpdate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofUpdate.lua -------------------------------------------------------------------------------- /ofelia/abs/ofUpdate.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofUpdate.pd -------------------------------------------------------------------------------- /ofelia/abs/ofWindow-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofWindow-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofWindow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofWindow.lua -------------------------------------------------------------------------------- /ofelia/abs/ofWindow.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofWindow.pd -------------------------------------------------------------------------------- /ofelia/abs/ofWindowResized-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofWindowResized-help.pd -------------------------------------------------------------------------------- /ofelia/abs/ofWindowResized.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofWindowResized.lua -------------------------------------------------------------------------------- /ofelia/abs/ofWindowResized.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/abs/ofWindowResized.pd -------------------------------------------------------------------------------- /ofelia/classesAndGlobalFunctions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/classesAndGlobalFunctions.txt -------------------------------------------------------------------------------- /ofelia/examples/3d/3dPrimitives/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/3d/3dPrimitives/main.pd -------------------------------------------------------------------------------- /ofelia/examples/3d/coloredCube/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/3d/coloredCube/main.pd -------------------------------------------------------------------------------- /ofelia/examples/drawing/continuousLines/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/drawing/continuousLines/main.pd -------------------------------------------------------------------------------- /ofelia/examples/drawing/pattern/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/drawing/pattern/main.pd -------------------------------------------------------------------------------- /ofelia/examples/fbo/trails/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/fbo/trails/main.pd -------------------------------------------------------------------------------- /ofelia/examples/image/imageLoaderExample/data/bike_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/imageLoaderExample/data/bike_icon.gif -------------------------------------------------------------------------------- /ofelia/examples/image/imageLoaderExample/data/bike_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/imageLoaderExample/data/bike_icon.png -------------------------------------------------------------------------------- /ofelia/examples/image/imageLoaderExample/data/bikers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/imageLoaderExample/data/bikers.jpg -------------------------------------------------------------------------------- /ofelia/examples/image/imageLoaderExample/data/gears.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/imageLoaderExample/data/gears.gif -------------------------------------------------------------------------------- /ofelia/examples/image/imageLoaderExample/data/tdf_1972_poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/imageLoaderExample/data/tdf_1972_poster.jpg -------------------------------------------------------------------------------- /ofelia/examples/image/imageLoaderExample/data/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/imageLoaderExample/data/transparency.png -------------------------------------------------------------------------------- /ofelia/examples/image/imageLoaderExample/imageLoaderExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/imageLoaderExample/imageLoaderExample.lua -------------------------------------------------------------------------------- /ofelia/examples/image/imageLoaderExample/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/imageLoaderExample/main.pd -------------------------------------------------------------------------------- /ofelia/examples/image/loadDisplayImage/data/moonwalk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/loadDisplayImage/data/moonwalk.jpg -------------------------------------------------------------------------------- /ofelia/examples/image/loadDisplayImage/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/loadDisplayImage/main.pd -------------------------------------------------------------------------------- /ofelia/examples/image/pointillism/data/moonwalk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/pointillism/data/moonwalk.jpg -------------------------------------------------------------------------------- /ofelia/examples/image/pointillism/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/pointillism/main.pd -------------------------------------------------------------------------------- /ofelia/examples/image/transparency/data/moonwalk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/transparency/data/moonwalk.jpg -------------------------------------------------------------------------------- /ofelia/examples/image/transparency/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/image/transparency/main.pd -------------------------------------------------------------------------------- /ofelia/examples/input/keyboard/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/input/keyboard/main.pd -------------------------------------------------------------------------------- /ofelia/examples/input/mouse2d/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/input/mouse2d/main.pd -------------------------------------------------------------------------------- /ofelia/examples/math/distance2d/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/math/distance2d/main.pd -------------------------------------------------------------------------------- /ofelia/examples/math/map/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/math/map/main.pd -------------------------------------------------------------------------------- /ofelia/examples/math/noiseWave/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/math/noiseWave/main.pd -------------------------------------------------------------------------------- /ofelia/examples/motion/bounce/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/motion/bounce/main.pd -------------------------------------------------------------------------------- /ofelia/examples/motion/brownian/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/motion/brownian/main.pd -------------------------------------------------------------------------------- /ofelia/examples/motion/cubes/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/motion/cubes/main.pd -------------------------------------------------------------------------------- /ofelia/examples/pd/metro/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/pd/metro/main.pd -------------------------------------------------------------------------------- /ofelia/examples/pd/misc/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/pd/misc/main.pd -------------------------------------------------------------------------------- /ofelia/examples/pd/sysgui/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/pd/sysgui/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shader/displacementMap/data/shadersES2/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/displacementMap/data/shadersES2/shader.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/displacementMap/data/shadersES2/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/displacementMap/data/shadersES2/shader.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/displacementMap/data/shadersGL2/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/displacementMap/data/shadersGL2/shader.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/displacementMap/data/shadersGL2/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/displacementMap/data/shadersGL2/shader.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/displacementMap/data/shadersGL3/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/displacementMap/data/shadersGL3/shader.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/displacementMap/data/shadersGL3/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/displacementMap/data/shadersGL3/shader.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/displacementMap/displacementMap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/displacementMap/displacementMap.lua -------------------------------------------------------------------------------- /ofelia/examples/shader/displacementMap/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/displacementMap/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shader/geometryShader/data/shaders/frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/geometryShader/data/shaders/frag.glsl -------------------------------------------------------------------------------- /ofelia/examples/shader/geometryShader/data/shaders/geom.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/geometryShader/data/shaders/geom.glsl -------------------------------------------------------------------------------- /ofelia/examples/shader/geometryShader/data/shaders/vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/geometryShader/data/shaders/vert.glsl -------------------------------------------------------------------------------- /ofelia/examples/shader/geometryShader/geometryShader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/geometryShader/geometryShader.lua -------------------------------------------------------------------------------- /ofelia/examples/shader/geometryShader/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/geometryShader/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test1.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test1.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test1.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test2.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test2.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test2.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test3.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test3.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test3.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test3.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test4.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test4.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test4.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test4.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test5.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test5.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test5.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test5.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test6.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test6.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test6.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test6.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test7.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test7.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/data/test7.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/data/test7.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/glslSandbox/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/glslSandbox/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shader/simpleColorQuad/data/shadersES2/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/simpleColorQuad/data/shadersES2/shader.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/simpleColorQuad/data/shadersES2/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/simpleColorQuad/data/shadersES2/shader.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/simpleColorQuad/data/shadersGL2/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/simpleColorQuad/data/shadersGL2/shader.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/simpleColorQuad/data/shadersGL2/shader.vert: -------------------------------------------------------------------------------- 1 | #version 120 2 | 3 | void main() 4 | { 5 | gl_Position = ftransform(); 6 | } -------------------------------------------------------------------------------- /ofelia/examples/shader/simpleColorQuad/data/shadersGL3/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/simpleColorQuad/data/shadersGL3/shader.frag -------------------------------------------------------------------------------- /ofelia/examples/shader/simpleColorQuad/data/shadersGL3/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/simpleColorQuad/data/shadersGL3/shader.vert -------------------------------------------------------------------------------- /ofelia/examples/shader/simpleColorQuad/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/simpleColorQuad/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shader/simpleColorQuad/simpleColorQuad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shader/simpleColorQuad/simpleColorQuad.lua -------------------------------------------------------------------------------- /ofelia/examples/shape/bezier/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shape/bezier/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shape/graphicsExample/graphicsExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shape/graphicsExample/graphicsExample.lua -------------------------------------------------------------------------------- /ofelia/examples/shape/graphicsExample/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shape/graphicsExample/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shape/polygon/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shape/polygon/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shape/polygonExample/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shape/polygonExample/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shape/polygonExample/polygonExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shape/polygonExample/polygonExample.lua -------------------------------------------------------------------------------- /ofelia/examples/shape/shapePrimitives/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shape/shapePrimitives/main.pd -------------------------------------------------------------------------------- /ofelia/examples/shape/star/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/shape/star/main.pd -------------------------------------------------------------------------------- /ofelia/examples/simulate/simpleParticleSystem/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/simulate/simpleParticleSystem/main.pd -------------------------------------------------------------------------------- /ofelia/examples/text/drawFontString/data/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/drawFontString/data/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /ofelia/examples/text/drawFontString/data/Sansation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/drawFontString/data/Sansation.ttf -------------------------------------------------------------------------------- /ofelia/examples/text/drawFontString/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/drawFontString/main.pd -------------------------------------------------------------------------------- /ofelia/examples/text/fontsExample/data/frabk.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/fontsExample/data/frabk.ttf -------------------------------------------------------------------------------- /ofelia/examples/text/fontsExample/data/verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/fontsExample/data/verdana.ttf -------------------------------------------------------------------------------- /ofelia/examples/text/fontsExample/fontsExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/fontsExample/fontsExample.lua -------------------------------------------------------------------------------- /ofelia/examples/text/fontsExample/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/fontsExample/main.pd -------------------------------------------------------------------------------- /ofelia/examples/text/letters/data/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/letters/data/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /ofelia/examples/text/letters/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/letters/main.pd -------------------------------------------------------------------------------- /ofelia/examples/text/unicode/data/gungsuh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/unicode/data/gungsuh.ttf -------------------------------------------------------------------------------- /ofelia/examples/text/unicode/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/text/unicode/main.pd -------------------------------------------------------------------------------- /ofelia/examples/video/asciiVideoExample/asciiVideoExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/video/asciiVideoExample/asciiVideoExample.lua -------------------------------------------------------------------------------- /ofelia/examples/video/asciiVideoExample/data/Courier New Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/video/asciiVideoExample/data/Courier New Bold.ttf -------------------------------------------------------------------------------- /ofelia/examples/video/asciiVideoExample/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/video/asciiVideoExample/main.pd -------------------------------------------------------------------------------- /ofelia/examples/video/loadDisplayVideo/data/fingers.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/video/loadDisplayVideo/data/fingers.mov -------------------------------------------------------------------------------- /ofelia/examples/video/loadDisplayVideo/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/video/loadDisplayVideo/main.pd -------------------------------------------------------------------------------- /ofelia/examples/video/videoGrabberExample/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/video/videoGrabberExample/main.pd -------------------------------------------------------------------------------- /ofelia/examples/video/videoPlayerExample/data/fingers.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/video/videoPlayerExample/data/fingers.mov -------------------------------------------------------------------------------- /ofelia/examples/video/videoPlayerExample/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/video/videoPlayerExample/main.pd -------------------------------------------------------------------------------- /ofelia/examples/video/videoPlayerExample/videoPlayerExample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/examples/video/videoPlayerExample/videoPlayerExample.lua -------------------------------------------------------------------------------- /ofelia/ofelia-object-help.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/ofelia-object-help.lua -------------------------------------------------------------------------------- /ofelia/ofelia-object-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/ofelia-object-help.pd -------------------------------------------------------------------------------- /ofelia/ofelia_textwindow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofelia/ofelia_textwindow.tcl -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /scripts/Emscripten/updateOF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Emscripten/updateOF.sh -------------------------------------------------------------------------------- /scripts/Emscripten/updateOF/config.emscripten.default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Emscripten/updateOF/config.emscripten.default.mk -------------------------------------------------------------------------------- /scripts/Linux64/updateOF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF.sh -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/config.linux64.default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/config.linux64.default.mk -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/kiss/Makefile.armv6l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/kiss/Makefile.armv6l -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/kiss/include/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/kiss/include/kiss_fft.h -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/kiss/include/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/kiss/include/kiss_fftr.h -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/kiss/lib/linux64/libkiss.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/kiss/lib/linux64/libkiss.a -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/kiss/license/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/kiss/license/COPYING -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/kiss/src/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/kiss/src/_kiss_fft_guts.h -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/kiss/src/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/kiss/src/kiss_fft.c -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/kiss/src/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/kiss/src/kiss_fftr.c -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/tess2/Makefile.armv6l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/tess2/Makefile.armv6l -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/tess2/Makefile.armv7l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/tess2/Makefile.armv7l -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/tess2/include/tesselator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/tess2/include/tesselator.h -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/tess2/lib/linux64/libtess2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/tess2/lib/linux64/libtess2.a -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/tess2/lib/linux64/libtess2.a-without-fPIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/tess2/lib/linux64/libtess2.a-without-fPIC -------------------------------------------------------------------------------- /scripts/Linux64/updateOF/tess2/license/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/Linux64/updateOF/tess2/license/LICENSE.txt -------------------------------------------------------------------------------- /scripts/common/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/common/glew.h -------------------------------------------------------------------------------- /scripts/common/ofxOfeliaPdBindings.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/common/ofxOfeliaPdBindings.i -------------------------------------------------------------------------------- /scripts/common/updateGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/common/updateGL.cpp -------------------------------------------------------------------------------- /scripts/common/updateGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/common/updateGL.sh -------------------------------------------------------------------------------- /scripts/common/updatePdBindings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/common/updatePdBindings.sh -------------------------------------------------------------------------------- /scripts/release/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/scripts/release/release.sh -------------------------------------------------------------------------------- /src/ofxOfelia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfelia.cpp -------------------------------------------------------------------------------- /src/ofxOfelia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfelia.h -------------------------------------------------------------------------------- /src/ofxOfeliaClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaClient.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaClient.h -------------------------------------------------------------------------------- /src/ofxOfeliaCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaCreator.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaCreator.h -------------------------------------------------------------------------------- /src/ofxOfeliaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaData.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaData.h -------------------------------------------------------------------------------- /src/ofxOfeliaDefine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaDefine.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaDefine.h -------------------------------------------------------------------------------- /src/ofxOfeliaEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaEvents.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaEvents.h -------------------------------------------------------------------------------- /src/ofxOfeliaExists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaExists.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaExists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaExists.h -------------------------------------------------------------------------------- /src/ofxOfeliaFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaFunction.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaFunction.h -------------------------------------------------------------------------------- /src/ofxOfeliaGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaGL.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaGL.h -------------------------------------------------------------------------------- /src/ofxOfeliaGet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaGet.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaGet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaGet.h -------------------------------------------------------------------------------- /src/ofxOfeliaIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaIO.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaIO.h -------------------------------------------------------------------------------- /src/ofxOfeliaLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaLog.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaLog.h -------------------------------------------------------------------------------- /src/ofxOfeliaLua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaLua.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaLua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaLua.h -------------------------------------------------------------------------------- /src/ofxOfeliaPdBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaPdBindings.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaPdBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaPdBindings.h -------------------------------------------------------------------------------- /src/ofxOfeliaSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaSet.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaSet.h -------------------------------------------------------------------------------- /src/ofxOfeliaSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaSetup.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaSetup.h -------------------------------------------------------------------------------- /src/ofxOfeliaSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaSignal.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaSignal.h -------------------------------------------------------------------------------- /src/ofxOfeliaTextBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaTextBuf.cpp -------------------------------------------------------------------------------- /src/ofxOfeliaTextBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuinjune/Ofelia/HEAD/src/ofxOfeliaTextBuf.h --------------------------------------------------------------------------------