├── .gitignore ├── LICENSE ├── Makefile ├── Project.xcconfig ├── README.md ├── addons.make ├── bin └── data │ ├── .gitkeep │ ├── GUI │ ├── defaultColorPalette.png │ └── defaultColors.xml │ ├── assets │ ├── icon_64x64.png │ └── lpmt_splash.png │ ├── config.xml │ ├── help_keys.txt │ ├── mpe_client_settings.xml │ ├── osc │ ├── lpmt.pd │ ├── lpmt.touchosc │ └── lpmt_osc.js │ ├── resources │ ├── abstract-kaleidoscope.jpg │ ├── architecture-illusion-wall.jpg │ ├── op-art-lines.jpg │ ├── slides │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ └── image5.jpg │ └── white-black-lines-striped.jpg │ ├── shaders │ ├── SmoothEdgeBlend.frag │ ├── blend.frag │ ├── blend.vert │ ├── crossfade.frag │ ├── crossfade.vert │ ├── greenscreen.frag │ ├── greenscreen.vert │ ├── huesatluminance.frag │ ├── huesatluminance.vert │ ├── mask.frag │ ├── mask.vert │ ├── noise.frag │ ├── noise.vert │ ├── surface.frag │ └── surface.vert │ ├── timeline │ └── .gitkeep │ └── type │ ├── NewMediaFett.ttf │ ├── OpenSans-Regular.ttf │ ├── Roboto-Regular.ttf │ └── mono.ttf ├── config.make ├── icon.rc ├── icons ├── icon_128x128.png ├── icon_16x16.png ├── icon_256x256.png ├── icon_32x32.png ├── icon_512x512.png ├── icon_64x64.png └── lpmt.svg ├── lpmt.qbs ├── lpmt.sln ├── lpmt.vcxproj ├── lpmt.vcxproj.filters ├── lpmt.vcxproj.user ├── lpmt.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── lpmt.xcscmblueprint │ └── xcuserdata │ │ └── grimus.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── lpmt Debug.xcscheme │ │ └── lpmt Release.xcscheme └── xcuserdata │ └── grimus.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── openFrameworks-Info.plist ├── screenshots ├── screenshot1.jpg ├── screenshot2.jpg └── screenshot3.jpg └── src ├── GUI.cpp ├── GUI.hpp ├── Util.cpp ├── Util.hpp ├── addons ├── Easings │ ├── ofxEasing.cpp │ ├── ofxEasing.h │ ├── ofxEasingBack.cpp │ ├── ofxEasingBack.h │ ├── ofxEasingBounce.cpp │ ├── ofxEasingBounce.h │ ├── ofxEasingCirc.cpp │ ├── ofxEasingCirc.h │ ├── ofxEasingCubic.cpp │ ├── ofxEasingCubic.h │ ├── ofxEasingElastic.cpp │ ├── ofxEasingElastic.h │ ├── ofxEasingExpo.cpp │ ├── ofxEasingExpo.h │ ├── ofxEasingLinear.cpp │ ├── ofxEasingLinear.h │ ├── ofxEasingQuad.cpp │ ├── ofxEasingQuad.h │ ├── ofxEasingQuart.cpp │ ├── ofxEasingQuart.h │ ├── ofxEasingQuint.cpp │ ├── ofxEasingQuint.h │ ├── ofxEasingSine.cpp │ └── ofxEasingSine.h ├── ofRange.h ├── ofxMSAInteractiveObject.cpp ├── ofxMSAInteractiveObject.h ├── ofxMSATimer.cpp ├── ofxMSATimer.h ├── ofxTextInputField.cpp ├── ofxTextInputField.h ├── ofxTimecode.cpp ├── ofxTimecode.h ├── ofxTween.cpp └── ofxTween.h ├── appUtils.cpp ├── gui ├── Controls │ ├── ofxSimpleGuiButton.cpp │ ├── ofxSimpleGuiButton.h │ ├── ofxSimpleGuiColorPicker.cpp │ ├── ofxSimpleGuiColorPicker.h │ ├── ofxSimpleGuiComboBox.cpp │ ├── ofxSimpleGuiComboBox.h │ ├── ofxSimpleGuiContent.cpp │ ├── ofxSimpleGuiContent.h │ ├── ofxSimpleGuiFPSCounter.cpp │ ├── ofxSimpleGuiFPSCounter.h │ ├── ofxSimpleGuiMovieSlider.cpp │ ├── ofxSimpleGuiMovieSlider.h │ ├── ofxSimpleGuiQuadWarp.cpp │ ├── ofxSimpleGuiQuadWarp.h │ ├── ofxSimpleGuiSlider2d.cpp │ ├── ofxSimpleGuiSlider2d.h │ ├── ofxSimpleGuiSliderBase.h │ ├── ofxSimpleGuiSliderFloat.h │ ├── ofxSimpleGuiSliderInt.h │ ├── ofxSimpleGuiTitle.cpp │ ├── ofxSimpleGuiTitle.h │ ├── ofxSimpleGuiToggle.cpp │ └── ofxSimpleGuiToggle.h ├── ofxSimpleGuiConfig.cpp ├── ofxSimpleGuiConfig.h ├── ofxSimpleGuiControl.cpp ├── ofxSimpleGuiControl.h ├── ofxSimpleGuiIncludes.h ├── ofxSimpleGuiPage.cpp ├── ofxSimpleGuiPage.h ├── ofxSimpleGuiToo.cpp ├── ofxSimpleGuiToo.h ├── ofxSimpleGuiValueControl.cpp └── ofxSimpleGuiValueControl.h ├── homography.cpp ├── kinectManager.cpp ├── kinectManager.h ├── main.cpp ├── ofApp.cpp ├── ofApp.h ├── parseMIDI.cpp ├── parseOSC.cpp ├── quad.cpp ├── quad.h ├── timeline.cpp ├── timeline ├── kiss │ ├── _kiss_fft_guts.h │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── kiss_fftr.c │ └── kiss_fftr.h ├── libsndfile │ ├── sndfile.h │ └── sndfile.hh ├── ofOpenALSoundPlayer_TimelineAdditions.cpp ├── ofOpenALSoundPlayer_TimelineAdditions.h ├── ofxHotKeys.h ├── ofxTLAudioTrack.cpp ├── ofxTLAudioTrack.h ├── ofxTLBangs.cpp ├── ofxTLBangs.h ├── ofxTLCameraTrack.cpp ├── ofxTLCameraTrack.h ├── ofxTLColorTrack.cpp ├── ofxTLColorTrack.h ├── ofxTLColors.cpp ├── ofxTLColors.h ├── ofxTLCurves.cpp ├── ofxTLCurves.h ├── ofxTLEmptyKeyframes.cpp ├── ofxTLEmptyKeyframes.h ├── ofxTLEmptyTrack.cpp ├── ofxTLEmptyTrack.h ├── ofxTLEvents.h ├── ofxTLFlags.cpp ├── ofxTLFlags.h ├── ofxTLImageSequence.cpp ├── ofxTLImageSequence.h ├── ofxTLImageSequenceFrame.cpp ├── ofxTLImageSequenceFrame.h ├── ofxTLImageTrack.cpp ├── ofxTLImageTrack.h ├── ofxTLInOut.cpp ├── ofxTLInOut.h ├── ofxTLKeyframes.cpp ├── ofxTLKeyframes.h ├── ofxTLLFO.cpp ├── ofxTLLFO.h ├── ofxTLPage.cpp ├── ofxTLPage.h ├── ofxTLPageTabs.cpp ├── ofxTLPageTabs.h ├── ofxTLSwitches.cpp ├── ofxTLSwitches.h ├── ofxTLTicker.cpp ├── ofxTLTicker.h ├── ofxTLTrack.cpp ├── ofxTLTrack.h ├── ofxTLTrackHeader.cpp ├── ofxTLTrackHeader.h ├── ofxTLVideoThumb.cpp ├── ofxTLVideoThumb.h ├── ofxTLVideoTrack.cpp ├── ofxTLVideoTrack.h ├── ofxTLZoomer.cpp ├── ofxTLZoomer.h ├── ofxTimeline.cpp └── ofxTimeline.h └── xmlSetup.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/Makefile -------------------------------------------------------------------------------- /Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/Project.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/README.md -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/addons.make -------------------------------------------------------------------------------- /bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/GUI/defaultColorPalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/GUI/defaultColorPalette.png -------------------------------------------------------------------------------- /bin/data/GUI/defaultColors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/GUI/defaultColors.xml -------------------------------------------------------------------------------- /bin/data/assets/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/assets/icon_64x64.png -------------------------------------------------------------------------------- /bin/data/assets/lpmt_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/assets/lpmt_splash.png -------------------------------------------------------------------------------- /bin/data/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/config.xml -------------------------------------------------------------------------------- /bin/data/help_keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/help_keys.txt -------------------------------------------------------------------------------- /bin/data/mpe_client_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/mpe_client_settings.xml -------------------------------------------------------------------------------- /bin/data/osc/lpmt.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/osc/lpmt.pd -------------------------------------------------------------------------------- /bin/data/osc/lpmt.touchosc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/osc/lpmt.touchosc -------------------------------------------------------------------------------- /bin/data/osc/lpmt_osc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/osc/lpmt_osc.js -------------------------------------------------------------------------------- /bin/data/resources/abstract-kaleidoscope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/resources/abstract-kaleidoscope.jpg -------------------------------------------------------------------------------- /bin/data/resources/architecture-illusion-wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/resources/architecture-illusion-wall.jpg -------------------------------------------------------------------------------- /bin/data/resources/op-art-lines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/resources/op-art-lines.jpg -------------------------------------------------------------------------------- /bin/data/resources/slides/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/resources/slides/image1.jpg -------------------------------------------------------------------------------- /bin/data/resources/slides/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/resources/slides/image2.jpg -------------------------------------------------------------------------------- /bin/data/resources/slides/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/resources/slides/image3.jpg -------------------------------------------------------------------------------- /bin/data/resources/slides/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/resources/slides/image4.jpg -------------------------------------------------------------------------------- /bin/data/resources/slides/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/resources/slides/image5.jpg -------------------------------------------------------------------------------- /bin/data/resources/white-black-lines-striped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/resources/white-black-lines-striped.jpg -------------------------------------------------------------------------------- /bin/data/shaders/SmoothEdgeBlend.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/SmoothEdgeBlend.frag -------------------------------------------------------------------------------- /bin/data/shaders/blend.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/blend.frag -------------------------------------------------------------------------------- /bin/data/shaders/blend.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/blend.vert -------------------------------------------------------------------------------- /bin/data/shaders/crossfade.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/crossfade.frag -------------------------------------------------------------------------------- /bin/data/shaders/crossfade.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/crossfade.vert -------------------------------------------------------------------------------- /bin/data/shaders/greenscreen.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/greenscreen.frag -------------------------------------------------------------------------------- /bin/data/shaders/greenscreen.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/greenscreen.vert -------------------------------------------------------------------------------- /bin/data/shaders/huesatluminance.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/huesatluminance.frag -------------------------------------------------------------------------------- /bin/data/shaders/huesatluminance.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/huesatluminance.vert -------------------------------------------------------------------------------- /bin/data/shaders/mask.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/mask.frag -------------------------------------------------------------------------------- /bin/data/shaders/mask.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/mask.vert -------------------------------------------------------------------------------- /bin/data/shaders/noise.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/noise.frag -------------------------------------------------------------------------------- /bin/data/shaders/noise.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/noise.vert -------------------------------------------------------------------------------- /bin/data/shaders/surface.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/surface.frag -------------------------------------------------------------------------------- /bin/data/shaders/surface.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/shaders/surface.vert -------------------------------------------------------------------------------- /bin/data/timeline/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/type/NewMediaFett.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/type/NewMediaFett.ttf -------------------------------------------------------------------------------- /bin/data/type/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/type/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /bin/data/type/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/type/Roboto-Regular.ttf -------------------------------------------------------------------------------- /bin/data/type/mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/bin/data/type/mono.ttf -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/config.make -------------------------------------------------------------------------------- /icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/icon.rc -------------------------------------------------------------------------------- /icons/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/icons/icon_128x128.png -------------------------------------------------------------------------------- /icons/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/icons/icon_16x16.png -------------------------------------------------------------------------------- /icons/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/icons/icon_256x256.png -------------------------------------------------------------------------------- /icons/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/icons/icon_32x32.png -------------------------------------------------------------------------------- /icons/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/icons/icon_512x512.png -------------------------------------------------------------------------------- /icons/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/icons/icon_64x64.png -------------------------------------------------------------------------------- /icons/lpmt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/icons/lpmt.svg -------------------------------------------------------------------------------- /lpmt.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.qbs -------------------------------------------------------------------------------- /lpmt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.sln -------------------------------------------------------------------------------- /lpmt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.vcxproj -------------------------------------------------------------------------------- /lpmt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.vcxproj.filters -------------------------------------------------------------------------------- /lpmt.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.vcxproj.user -------------------------------------------------------------------------------- /lpmt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /lpmt.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /lpmt.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /lpmt.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /lpmt.xcodeproj/project.xcworkspace/xcshareddata/lpmt.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.xcodeproj/project.xcworkspace/xcshareddata/lpmt.xcscmblueprint -------------------------------------------------------------------------------- /lpmt.xcodeproj/project.xcworkspace/xcuserdata/grimus.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.xcodeproj/project.xcworkspace/xcuserdata/grimus.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /lpmt.xcodeproj/xcshareddata/xcschemes/lpmt Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.xcodeproj/xcshareddata/xcschemes/lpmt Debug.xcscheme -------------------------------------------------------------------------------- /lpmt.xcodeproj/xcshareddata/xcschemes/lpmt Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.xcodeproj/xcshareddata/xcschemes/lpmt Release.xcscheme -------------------------------------------------------------------------------- /lpmt.xcodeproj/xcuserdata/grimus.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/lpmt.xcodeproj/xcuserdata/grimus.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/openFrameworks-Info.plist -------------------------------------------------------------------------------- /screenshots/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/screenshots/screenshot1.jpg -------------------------------------------------------------------------------- /screenshots/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/screenshots/screenshot2.jpg -------------------------------------------------------------------------------- /screenshots/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/screenshots/screenshot3.jpg -------------------------------------------------------------------------------- /src/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/GUI.cpp -------------------------------------------------------------------------------- /src/GUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/GUI.hpp -------------------------------------------------------------------------------- /src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/Util.cpp -------------------------------------------------------------------------------- /src/Util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/Util.hpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasing.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasing.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingBack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingBack.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingBack.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingBounce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingBounce.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingBounce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingBounce.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingCirc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingCirc.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingCirc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingCirc.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingCubic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingCubic.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingCubic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingCubic.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingElastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingElastic.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingElastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingElastic.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingExpo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingExpo.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingExpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingExpo.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingLinear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingLinear.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingLinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingLinear.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingQuad.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingQuad.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingQuart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingQuart.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingQuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingQuart.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingQuint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingQuint.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingQuint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingQuint.h -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingSine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingSine.cpp -------------------------------------------------------------------------------- /src/addons/Easings/ofxEasingSine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/Easings/ofxEasingSine.h -------------------------------------------------------------------------------- /src/addons/ofRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofRange.h -------------------------------------------------------------------------------- /src/addons/ofxMSAInteractiveObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxMSAInteractiveObject.cpp -------------------------------------------------------------------------------- /src/addons/ofxMSAInteractiveObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxMSAInteractiveObject.h -------------------------------------------------------------------------------- /src/addons/ofxMSATimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxMSATimer.cpp -------------------------------------------------------------------------------- /src/addons/ofxMSATimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxMSATimer.h -------------------------------------------------------------------------------- /src/addons/ofxTextInputField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxTextInputField.cpp -------------------------------------------------------------------------------- /src/addons/ofxTextInputField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxTextInputField.h -------------------------------------------------------------------------------- /src/addons/ofxTimecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxTimecode.cpp -------------------------------------------------------------------------------- /src/addons/ofxTimecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxTimecode.h -------------------------------------------------------------------------------- /src/addons/ofxTween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxTween.cpp -------------------------------------------------------------------------------- /src/addons/ofxTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/addons/ofxTween.h -------------------------------------------------------------------------------- /src/appUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/appUtils.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiButton.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiButton.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiColorPicker.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiColorPicker.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiComboBox.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiComboBox.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiContent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiContent.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiContent.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiFPSCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiFPSCounter.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiFPSCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiFPSCounter.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiMovieSlider.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiMovieSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiMovieSlider.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiQuadWarp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiQuadWarp.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiQuadWarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiQuadWarp.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiSlider2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiSlider2d.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiSlider2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiSlider2d.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiSliderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiSliderBase.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiSliderFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiSliderFloat.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiSliderInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiSliderInt.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiTitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiTitle.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiTitle.h -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiToggle.cpp -------------------------------------------------------------------------------- /src/gui/Controls/ofxSimpleGuiToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/Controls/ofxSimpleGuiToggle.h -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiConfig.cpp -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiConfig.h -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiControl.cpp -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiControl.h -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiIncludes.h -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiPage.cpp -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiPage.h -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiToo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiToo.cpp -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiToo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiToo.h -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiValueControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiValueControl.cpp -------------------------------------------------------------------------------- /src/gui/ofxSimpleGuiValueControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/gui/ofxSimpleGuiValueControl.h -------------------------------------------------------------------------------- /src/homography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/homography.cpp -------------------------------------------------------------------------------- /src/kinectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/kinectManager.cpp -------------------------------------------------------------------------------- /src/kinectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/kinectManager.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/ofApp.h -------------------------------------------------------------------------------- /src/parseMIDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/parseMIDI.cpp -------------------------------------------------------------------------------- /src/parseOSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/parseOSC.cpp -------------------------------------------------------------------------------- /src/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/quad.cpp -------------------------------------------------------------------------------- /src/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/quad.h -------------------------------------------------------------------------------- /src/timeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline.cpp -------------------------------------------------------------------------------- /src/timeline/kiss/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/kiss/_kiss_fft_guts.h -------------------------------------------------------------------------------- /src/timeline/kiss/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/kiss/kiss_fft.c -------------------------------------------------------------------------------- /src/timeline/kiss/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/kiss/kiss_fft.h -------------------------------------------------------------------------------- /src/timeline/kiss/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/kiss/kiss_fftr.c -------------------------------------------------------------------------------- /src/timeline/kiss/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/kiss/kiss_fftr.h -------------------------------------------------------------------------------- /src/timeline/libsndfile/sndfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/libsndfile/sndfile.h -------------------------------------------------------------------------------- /src/timeline/libsndfile/sndfile.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/libsndfile/sndfile.hh -------------------------------------------------------------------------------- /src/timeline/ofOpenALSoundPlayer_TimelineAdditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofOpenALSoundPlayer_TimelineAdditions.cpp -------------------------------------------------------------------------------- /src/timeline/ofOpenALSoundPlayer_TimelineAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofOpenALSoundPlayer_TimelineAdditions.h -------------------------------------------------------------------------------- /src/timeline/ofxHotKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxHotKeys.h -------------------------------------------------------------------------------- /src/timeline/ofxTLAudioTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLAudioTrack.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLAudioTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLAudioTrack.h -------------------------------------------------------------------------------- /src/timeline/ofxTLBangs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLBangs.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLBangs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLBangs.h -------------------------------------------------------------------------------- /src/timeline/ofxTLCameraTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLCameraTrack.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLCameraTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLCameraTrack.h -------------------------------------------------------------------------------- /src/timeline/ofxTLColorTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLColorTrack.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLColorTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLColorTrack.h -------------------------------------------------------------------------------- /src/timeline/ofxTLColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLColors.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLColors.h -------------------------------------------------------------------------------- /src/timeline/ofxTLCurves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLCurves.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLCurves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLCurves.h -------------------------------------------------------------------------------- /src/timeline/ofxTLEmptyKeyframes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLEmptyKeyframes.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLEmptyKeyframes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLEmptyKeyframes.h -------------------------------------------------------------------------------- /src/timeline/ofxTLEmptyTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLEmptyTrack.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLEmptyTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLEmptyTrack.h -------------------------------------------------------------------------------- /src/timeline/ofxTLEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLEvents.h -------------------------------------------------------------------------------- /src/timeline/ofxTLFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLFlags.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLFlags.h -------------------------------------------------------------------------------- /src/timeline/ofxTLImageSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLImageSequence.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLImageSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLImageSequence.h -------------------------------------------------------------------------------- /src/timeline/ofxTLImageSequenceFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLImageSequenceFrame.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLImageSequenceFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLImageSequenceFrame.h -------------------------------------------------------------------------------- /src/timeline/ofxTLImageTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLImageTrack.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLImageTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLImageTrack.h -------------------------------------------------------------------------------- /src/timeline/ofxTLInOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLInOut.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLInOut.h -------------------------------------------------------------------------------- /src/timeline/ofxTLKeyframes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLKeyframes.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLKeyframes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLKeyframes.h -------------------------------------------------------------------------------- /src/timeline/ofxTLLFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLLFO.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLLFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLLFO.h -------------------------------------------------------------------------------- /src/timeline/ofxTLPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLPage.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLPage.h -------------------------------------------------------------------------------- /src/timeline/ofxTLPageTabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLPageTabs.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLPageTabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLPageTabs.h -------------------------------------------------------------------------------- /src/timeline/ofxTLSwitches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLSwitches.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLSwitches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLSwitches.h -------------------------------------------------------------------------------- /src/timeline/ofxTLTicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLTicker.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLTicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLTicker.h -------------------------------------------------------------------------------- /src/timeline/ofxTLTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLTrack.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLTrack.h -------------------------------------------------------------------------------- /src/timeline/ofxTLTrackHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLTrackHeader.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLTrackHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLTrackHeader.h -------------------------------------------------------------------------------- /src/timeline/ofxTLVideoThumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLVideoThumb.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLVideoThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLVideoThumb.h -------------------------------------------------------------------------------- /src/timeline/ofxTLVideoTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLVideoTrack.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLVideoTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLVideoTrack.h -------------------------------------------------------------------------------- /src/timeline/ofxTLZoomer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLZoomer.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTLZoomer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTLZoomer.h -------------------------------------------------------------------------------- /src/timeline/ofxTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTimeline.cpp -------------------------------------------------------------------------------- /src/timeline/ofxTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/timeline/ofxTimeline.h -------------------------------------------------------------------------------- /src/xmlSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierrep/lpmt/HEAD/src/xmlSetup.cpp --------------------------------------------------------------------------------