├── .gitignore ├── AppIcon.appiconset ├── Contents.json ├── icon_128x128.png ├── icon_128x128@2x.png ├── icon_16x16.png ├── icon_16x16@2x.png ├── icon_256x256.png ├── icon_256x256@2x.png ├── icon_32x32.png ├── icon_32x32@2x.png ├── icon_512x512.png └── icon_512x512@2x.png ├── Makefile ├── Project.xcconfig ├── README.md ├── SonicSculpture.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── SonicSculpture Debug.xcscheme │ └── SonicSculpture Release.xcscheme ├── SonicSculptures └── Images.xcassets │ └── AppIcon.appiconset │ ├── Contents.json │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── addons.make ├── bin ├── SonicPrints_README.rtf └── data │ ├── Avenir Book.otf │ ├── Avenir Light.otf │ └── settings.xml ├── config.make ├── openFrameworks-Info.plist └── src ├── fftShapes.cpp ├── fftShapes.h ├── main.cpp ├── ofApp.cpp └── ofApp.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/.gitignore -------------------------------------------------------------------------------- /AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/Makefile -------------------------------------------------------------------------------- /Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/Project.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/README.md -------------------------------------------------------------------------------- /SonicSculpture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculpture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SonicSculpture.xcodeproj/xcshareddata/xcschemes/SonicSculpture Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculpture.xcodeproj/xcshareddata/xcschemes/SonicSculpture Debug.xcscheme -------------------------------------------------------------------------------- /SonicSculpture.xcodeproj/xcshareddata/xcschemes/SonicSculpture Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculpture.xcodeproj/xcshareddata/xcschemes/SonicSculpture Release.xcscheme -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/SonicSculptures/Images.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/addons.make -------------------------------------------------------------------------------- /bin/SonicPrints_README.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/bin/SonicPrints_README.rtf -------------------------------------------------------------------------------- /bin/data/Avenir Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/bin/data/Avenir Book.otf -------------------------------------------------------------------------------- /bin/data/Avenir Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/bin/data/Avenir Light.otf -------------------------------------------------------------------------------- /bin/data/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/bin/data/settings.xml -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/config.make -------------------------------------------------------------------------------- /openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/openFrameworks-Info.plist -------------------------------------------------------------------------------- /src/fftShapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/src/fftShapes.cpp -------------------------------------------------------------------------------- /src/fftShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/src/fftShapes.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserpilot/SonicSculpture/HEAD/src/ofApp.h --------------------------------------------------------------------------------