├── .github └── workflows │ ├── build-all.yml │ ├── max-macos.yml │ ├── max-windows.yml │ ├── pd-linux.yml │ ├── pd-macos.yml │ └── pd-windows.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── history.txt ├── max ├── cmake │ └── CMakeLists.txt ├── macosx │ └── xcode │ │ ├── mdegranular~.vcxproj │ │ └── mdegranular~.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── michael.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ └── michael.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── mdeGranular~.maxhelp └── windows │ └── Makefile ├── pd ├── makefile ├── mdeGranular~-help.pd ├── mdeGranular~.pd_darwin └── pd-lib-builder │ ├── CHANGELOG.txt │ ├── Makefile.pdlibbuilder │ ├── README.md │ └── tips-tricks.md └── src ├── CMakeLists.txt ├── TAGS ├── mdeGranular~.c ├── mdeGranular~.h ├── mdeGranular~maxmsp.c └── mdeGranular~pd.c /.github/workflows/build-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/.github/workflows/build-all.yml -------------------------------------------------------------------------------- /.github/workflows/max-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/.github/workflows/max-macos.yml -------------------------------------------------------------------------------- /.github/workflows/max-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/.github/workflows/max-windows.yml -------------------------------------------------------------------------------- /.github/workflows/pd-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/.github/workflows/pd-linux.yml -------------------------------------------------------------------------------- /.github/workflows/pd-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/.github/workflows/pd-macos.yml -------------------------------------------------------------------------------- /.github/workflows/pd-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/.github/workflows/pd-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/README.md -------------------------------------------------------------------------------- /history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/history.txt -------------------------------------------------------------------------------- /max/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /max/macosx/xcode/mdegranular~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/macosx/xcode/mdegranular~.vcxproj -------------------------------------------------------------------------------- /max/macosx/xcode/mdegranular~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/macosx/xcode/mdegranular~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/xcuserdata/michael.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/xcuserdata/michael.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/xcuserdata/michael.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/macosx/xcode/mdegranular~.xcodeproj/project.xcworkspace/xcuserdata/michael.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /max/macosx/xcode/mdegranular~.xcodeproj/xcuserdata/michael.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/macosx/xcode/mdegranular~.xcodeproj/xcuserdata/michael.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /max/mdeGranular~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/mdeGranular~.maxhelp -------------------------------------------------------------------------------- /max/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/max/windows/Makefile -------------------------------------------------------------------------------- /pd/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/pd/makefile -------------------------------------------------------------------------------- /pd/mdeGranular~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/pd/mdeGranular~-help.pd -------------------------------------------------------------------------------- /pd/mdeGranular~.pd_darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/pd/mdeGranular~.pd_darwin -------------------------------------------------------------------------------- /pd/pd-lib-builder/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/pd/pd-lib-builder/CHANGELOG.txt -------------------------------------------------------------------------------- /pd/pd-lib-builder/Makefile.pdlibbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/pd/pd-lib-builder/Makefile.pdlibbuilder -------------------------------------------------------------------------------- /pd/pd-lib-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/pd/pd-lib-builder/README.md -------------------------------------------------------------------------------- /pd/pd-lib-builder/tips-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/pd/pd-lib-builder/tips-tricks.md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/TAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/src/TAGS -------------------------------------------------------------------------------- /src/mdeGranular~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/src/mdeGranular~.c -------------------------------------------------------------------------------- /src/mdeGranular~.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/src/mdeGranular~.h -------------------------------------------------------------------------------- /src/mdeGranular~maxmsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/src/mdeGranular~maxmsp.c -------------------------------------------------------------------------------- /src/mdeGranular~pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdedwards/mdeGranular/HEAD/src/mdeGranular~pd.c --------------------------------------------------------------------------------