├── .gitattributes ├── .gitignore ├── ArazGraph.jucer ├── Builds └── VisualStudio2015 │ ├── .gitattributes │ ├── .gitignore │ ├── ArazGraph.sln │ ├── ArazGraph.vcxproj │ ├── ArazGraph.vcxproj.filters │ └── resources.rc ├── JuceLibraryCode ├── AppConfig.h ├── JuceHeader.h ├── ReadMe.txt └── modules │ ├── juce_audio_basics │ └── juce_audio_basics.h │ ├── juce_audio_devices │ └── juce_audio_devices.h │ ├── juce_audio_formats │ └── juce_audio_formats.h │ ├── juce_audio_processors │ └── juce_audio_processors.h │ ├── juce_core │ └── juce_core.h │ ├── juce_cryptography │ └── juce_cryptography.h │ ├── juce_data_structures │ └── juce_data_structures.h │ ├── juce_events │ └── juce_events.h │ ├── juce_graphics │ └── juce_graphics.h │ ├── juce_gui_basics │ └── juce_gui_basics.h │ ├── juce_gui_extra │ └── juce_gui_extra.h │ ├── juce_opengl │ └── juce_opengl.h │ └── juce_video │ └── juce_video.h ├── LICENSE.md ├── README.md ├── Screenshot ├── Screenshot_1.png └── Screenshot_2.png └── Source ├── ArazGraph.cpp ├── ArazGraph.h ├── Main.cpp ├── MainComponent.cpp └── MainComponent.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /ArazGraph.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/ArazGraph.jucer -------------------------------------------------------------------------------- /Builds/VisualStudio2015/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Builds/VisualStudio2015/.gitattributes -------------------------------------------------------------------------------- /Builds/VisualStudio2015/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Builds/VisualStudio2015/.gitignore -------------------------------------------------------------------------------- /Builds/VisualStudio2015/ArazGraph.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Builds/VisualStudio2015/ArazGraph.sln -------------------------------------------------------------------------------- /Builds/VisualStudio2015/ArazGraph.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Builds/VisualStudio2015/ArazGraph.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2015/ArazGraph.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Builds/VisualStudio2015/ArazGraph.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2015/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Builds/VisualStudio2015/resources.rc -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/juce_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_opengl/juce_opengl.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/juce_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/JuceLibraryCode/modules/juce_video/juce_video.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Screenshot/Screenshot_1.png -------------------------------------------------------------------------------- /Screenshot/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Screenshot/Screenshot_2.png -------------------------------------------------------------------------------- /Source/ArazGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Source/ArazGraph.cpp -------------------------------------------------------------------------------- /Source/ArazGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Source/ArazGraph.h -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Source/Main.cpp -------------------------------------------------------------------------------- /Source/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Source/MainComponent.cpp -------------------------------------------------------------------------------- /Source/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arabed/ArazGraph/HEAD/Source/MainComponent.h --------------------------------------------------------------------------------