├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── alloGLV ├── CMakeLists.txt ├── alloGLV │ ├── al_ControlGLV.hpp │ ├── al_ParameterGUI.hpp │ ├── al_ProtoApp.hpp │ └── al_SequencerGUI.hpp ├── examples │ ├── appGUI.cpp │ ├── detachableGUI.cpp │ ├── parametergui.cpp │ ├── presetsgui.cpp │ └── simpleGUI.cpp └── src │ ├── al_ControlGLV.cpp │ ├── al_ParameterGUI.cpp │ ├── al_ProtoApp.cpp │ └── al_SequencerGUI.cpp ├── alloaudio ├── CMakeLists.txt ├── alloaudio │ ├── al_AmbiFilePlayer.hpp │ ├── al_AmbiTunedDecoder.hpp │ ├── al_AmbisonicsConfig.hpp │ ├── al_Convolver.hpp │ ├── al_Decorrelation.hpp │ ├── al_OutputMaster.hpp │ ├── al_SoundfileBuffered.hpp │ └── butter.h ├── dependencies ├── examples │ ├── ambifilePlayer.cpp │ ├── decorrelation.cpp │ ├── multichannelControl.cpp │ ├── multichannelConvolution.cpp │ └── multichannelScope.cpp ├── interfaces │ ├── alloaudio-main.html │ └── alloaudio-meters.html ├── src │ ├── al_AmbiFilePlayer.cpp │ ├── al_AmbiTunedDecoder.cpp │ ├── al_Convolver.cpp │ ├── al_Decorrelation.cpp │ ├── al_OutputMaster.cpp │ ├── al_SoundfileBuffered.cpp │ ├── butter.cpp │ └── zita-convolver-3.1.0 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── README │ │ └── libs │ │ ├── Makefile │ │ ├── Makefile-linux │ │ ├── Makefile-osx │ │ ├── zita-convolver.cc │ │ └── zita-convolver.h └── unitTests │ ├── alloaudioTests.cpp │ ├── convolverTests.cpp │ └── decorrelationTests.cpp ├── allocore ├── CMakeLists.txt ├── allocore │ ├── al_Allocore.hpp │ ├── graphics │ │ ├── OpenGLSupport.txt │ │ ├── al_Asset.hpp │ │ ├── al_BufferObject.hpp │ │ ├── al_DisplayList.hpp │ │ ├── al_EasyFBO.hpp │ │ ├── al_FBO.hpp │ │ ├── al_Font.hpp │ │ ├── al_GPUObject.hpp │ │ ├── al_Graphics.hpp │ │ ├── al_Image.hpp │ │ ├── al_Isosurface.hpp │ │ ├── al_Lens.hpp │ │ ├── al_Light.hpp │ │ ├── al_Mesh.hpp │ │ ├── al_MeshVBO.hpp │ │ ├── al_OpenGL.hpp │ │ ├── al_Screenshot.hpp │ │ ├── al_Shader.hpp │ │ ├── al_Shapes.hpp │ │ ├── al_Slab.hpp │ │ ├── al_Stereographic.hpp │ │ └── al_Texture.hpp │ ├── io │ │ ├── al_App.hpp │ │ ├── al_AudioIO.hpp │ │ ├── al_AudioIOData.hpp │ │ ├── al_Bluetooth.hpp │ │ ├── al_CSVReader.hpp │ │ ├── al_ControlNav.hpp │ │ ├── al_File.hpp │ │ ├── al_HID.hpp │ │ ├── al_MIDI.hpp │ │ ├── al_MRC.hpp │ │ ├── al_RenderToDisk.hpp │ │ ├── al_Serial.hpp │ │ ├── al_Socket.hpp │ │ └── al_Window.hpp │ ├── math │ │ ├── al_Analysis.hpp │ │ ├── al_Complex.hpp │ │ ├── al_Constants.hpp │ │ ├── al_Frustum.hpp │ │ ├── al_Functions.hpp │ │ ├── al_Interpolation.hpp │ │ ├── al_Interval.hpp │ │ ├── al_Mat.hpp │ │ ├── al_Matrix4.hpp │ │ ├── al_Plane.hpp │ │ ├── al_Quat.hpp │ │ ├── al_Random.hpp │ │ ├── al_Ray.hpp │ │ ├── al_Spherical.hpp │ │ └── al_Vec.hpp │ ├── protocol │ │ ├── al_OSC.hpp │ │ └── al_Zeroconf.hpp │ ├── sound │ │ ├── al_Ambisonics.hpp │ │ ├── al_AudioScene.hpp │ │ ├── al_Biquad.hpp │ │ ├── al_Crossover.hpp │ │ ├── al_Dbap.hpp │ │ ├── al_Reverb.hpp │ │ ├── al_Speaker.hpp │ │ ├── al_StereoPanner.hpp │ │ └── al_Vbap.hpp │ ├── spatial │ │ ├── al_Curve.hpp │ │ ├── al_DistAtten.hpp │ │ ├── al_HashSpace.hpp │ │ └── al_Pose.hpp │ ├── system │ │ ├── al_Config.h │ │ ├── al_Info.hpp │ │ ├── al_MainLoop.hpp │ │ ├── al_PeriodicThread.hpp │ │ ├── al_Printing.hpp │ │ ├── al_Thread.hpp │ │ ├── al_Time.h │ │ ├── al_Time.hpp │ │ ├── al_Watcher.hpp │ │ └── pstdint.h │ ├── types │ │ ├── al_Array.h │ │ ├── al_Array.hpp │ │ ├── al_Buffer.hpp │ │ ├── al_Color.hpp │ │ ├── al_Conversion.hpp │ │ ├── al_MsgQueue.hpp │ │ ├── al_MsgTube.hpp │ │ └── al_SingleRWRingBuffer.hpp │ └── ui │ │ ├── al_BoundingBox.hpp │ │ ├── al_Composition.hpp │ │ ├── al_Gnomon.hpp │ │ ├── al_HtmlInterfaceServer.hpp │ │ ├── al_Parameter.hpp │ │ ├── al_ParameterMIDI.hpp │ │ ├── al_Pickable.hpp │ │ ├── al_Preset.hpp │ │ ├── al_PresetMIDI.hpp │ │ ├── al_PresetMapper.hpp │ │ ├── al_PresetSequencer.hpp │ │ ├── al_RotateHandle.hpp │ │ ├── al_SequenceRecorder.hpp │ │ ├── al_SynthSequencer.hpp │ │ └── al_TranslateHandle.hpp ├── dependencies ├── examples │ ├── av │ │ ├── MsgTube.cpp │ │ ├── audioToGraphics.cpp │ │ └── helloVirtualWorld.cpp │ ├── graphics │ │ ├── 2D.cpp │ │ ├── VBOManyShape.cpp │ │ ├── calibrate.cpp │ │ ├── camera.cpp │ │ ├── camera2.cpp │ │ ├── cieColor.cpp │ │ ├── displayList.cpp │ │ ├── fbo.cpp │ │ ├── font.cpp │ │ ├── frameFeedback.cpp │ │ ├── frontBack.cpp │ │ ├── frustumTesting.cpp │ │ ├── isosurface.cpp │ │ ├── lighting.cpp │ │ ├── meshManyShape.cpp │ │ ├── meshSquare.cpp │ │ ├── mirror.cpp │ │ ├── modelShader.cpp │ │ ├── omnigraphic.cpp │ │ ├── pickRay.cpp │ │ ├── platonics.cpp │ │ ├── pointSprites.cpp │ │ ├── query.cpp │ │ ├── renderDepthToTexture.cpp │ │ ├── renderToTexture.cpp │ │ ├── shaderFog.cpp │ │ ├── shaderPhong.cpp │ │ ├── shaderSprites.cpp │ │ ├── shaderTexture.cpp │ │ ├── shapeGallery.cpp │ │ ├── stereographic.cpp │ │ ├── texture.cpp │ │ ├── texture3d.cpp │ │ ├── textureAlpha.cpp │ │ ├── textureImage.cpp │ │ └── transformations.cpp │ ├── io │ │ ├── AllocoreTest │ │ │ ├── Interface.lua │ │ │ ├── audio.lua │ │ │ └── joystick.lua │ │ ├── DeviceServer.cpp │ │ ├── HID.cpp │ │ ├── Interface.Server.cpp │ │ ├── OSC.cpp │ │ ├── OSCClient.cpp │ │ ├── OSCServer.cpp │ │ ├── appSimple.cpp │ │ ├── audioDevice.cpp │ │ ├── bluetooth.cpp │ │ ├── csvreader.cpp │ │ ├── directory.cpp │ │ ├── midiIn.cpp │ │ ├── midiInApp.cpp │ │ ├── prettyVec.cpp │ │ ├── renderToDisk.cpp │ │ ├── searchPaths.cpp │ │ ├── serial.cpp │ │ ├── socket.cpp │ │ ├── window.cpp │ │ └── zeroconf.cpp │ ├── math │ │ ├── matrix.cpp │ │ ├── random.cpp │ │ └── vector.cpp │ ├── simulation │ │ ├── flocking.cpp │ │ ├── gravityWell.cpp │ │ ├── levyFlight.cpp │ │ ├── mrc.cpp │ │ ├── particleSystem.cpp │ │ └── waveEquation.cpp │ ├── sound │ │ ├── ambiPlayer.cpp │ │ ├── audioScene.cpp │ │ ├── multiFilePlayer.cpp │ │ ├── probe.cpp │ │ ├── reverb.cpp │ │ ├── speakerTest.cpp │ │ ├── stereoscene.cpp │ │ └── vbap.cpp │ ├── spatial │ │ ├── hashSpace.cpp │ │ ├── sliceassembler.cpp │ │ └── voxels.cpp │ ├── system │ │ ├── parallelThreads.cpp │ │ ├── thread.cpp │ │ └── threadPeriodic.cpp │ └── ui │ │ ├── boundingBox.cpp │ │ ├── htmlInterface.cpp │ │ ├── parameter.cpp │ │ ├── parametermidi.cpp │ │ ├── pickable.cpp │ │ ├── pickableChildren.cpp │ │ ├── presetmaps.cpp │ │ ├── presets.cpp │ │ ├── recorder.cpp │ │ ├── rotateHandle.cpp │ │ ├── sequencer.cpp │ │ └── translateHandle.cpp ├── external │ ├── bluetoothWindows │ │ ├── BluetoothAPIs.h │ │ ├── bthdef.h │ │ ├── bthsdpdef.h │ │ └── ws2bth.h │ ├── hidapi │ │ ├── hid_linux.c │ │ ├── hid_mac.c │ │ ├── hid_windows.c │ │ └── hidapi.h │ ├── oscpack │ │ ├── ip │ │ │ ├── IpEndpointName.cpp │ │ │ ├── IpEndpointName.h │ │ │ ├── NetworkingUtils.h │ │ │ ├── PacketListener.h │ │ │ ├── TimerListener.h │ │ │ ├── UdpSocket.h │ │ │ ├── posix │ │ │ │ ├── NetworkingUtils.cpp │ │ │ │ └── UdpSocket.cpp │ │ │ └── win32 │ │ │ │ ├── NetworkingUtils.cpp │ │ │ │ └── UdpSocket.cpp │ │ └── osc │ │ │ ├── MessageMappingOscPacketListener.h │ │ │ ├── OscException.h │ │ │ ├── OscHostEndianness.h │ │ │ ├── OscOutboundPacketStream.cpp │ │ │ ├── OscOutboundPacketStream.h │ │ │ ├── OscPacketListener.h │ │ │ ├── OscPrintReceivedElements.cpp │ │ │ ├── OscPrintReceivedElements.h │ │ │ ├── OscReceivedElements.cpp │ │ │ ├── OscReceivedElements.h │ │ │ ├── OscTypes.cpp │ │ │ └── OscTypes.h │ └── serial │ │ ├── list_ports_linux.cc │ │ ├── list_ports_osx.cc │ │ ├── list_ports_win.cc │ │ ├── serial.cc │ │ ├── serial │ │ ├── impl │ │ │ ├── serial │ │ │ │ └── serial.h │ │ │ ├── unix.h │ │ │ └── win.h │ │ ├── serial.h │ │ └── v8stdint.h │ │ ├── unix.cc │ │ └── win.cc ├── modules │ ├── apr_module.cmake │ ├── assimp_module.cmake │ ├── font_module.cmake │ ├── freeimage_module.cmake │ ├── gl_module.cmake │ ├── glut_module.cmake │ ├── libsndfile_module.cmake │ ├── osc_module.cmake │ ├── portaudio_module.cmake │ └── zeroconf_module.cmake ├── share │ ├── data │ │ └── test.csv │ ├── fonts │ │ ├── VeraMoBI.ttf │ │ ├── VeraMoBd.ttf │ │ ├── VeraMoIt.ttf │ │ └── VeraMono.ttf │ ├── images │ │ ├── hubble.jpg │ │ └── tiny.jpg │ ├── imod_data │ │ ├── README │ │ └── golgi.mrc │ ├── models │ │ ├── bunny_small.obj │ │ └── ducky.obj │ └── shaders │ │ ├── basicFragment.glsl │ │ ├── basicVertex.glsl │ │ ├── cel.fs │ │ ├── cel.vs │ │ ├── celshader.sbproj │ │ ├── omni.sbproj │ │ ├── omniFragment.glsl.fs │ │ ├── omniVertex.glsl.vs │ │ ├── stereoFragment.glsl │ │ └── stereoVertex.glsl ├── src │ ├── graphics │ │ ├── al_Asset.cpp │ │ ├── al_BufferObject.cpp │ │ ├── al_FBO.cpp │ │ ├── al_Font.cpp │ │ ├── al_GPUObject.cpp │ │ ├── al_Graphics.cpp │ │ ├── al_Image.cpp │ │ ├── al_Isosurface.cpp │ │ ├── al_Lens.cpp │ │ ├── al_Light.cpp │ │ ├── al_Mesh.cpp │ │ ├── al_MeshVBO.cpp │ │ ├── al_Screenshot.cpp │ │ ├── al_Shader.cpp │ │ ├── al_Shapes.cpp │ │ ├── al_Stereographic.cpp │ │ ├── al_Texture.cpp │ │ ├── archived │ │ │ ├── al_GraphicsBackendOpenGL.cpp │ │ │ ├── al_GraphicsOpenGL.cpp │ │ │ ├── al_GraphicsOpenGLES1.cpp │ │ │ ├── al_GraphicsOpenGLES2.cpp │ │ │ ├── al_Graphics_Old.cpp │ │ │ ├── al_Model.cpp │ │ │ └── al_Surface.cpp │ │ └── pending │ │ │ └── al_Surface.cpp │ ├── io │ │ ├── al_App.cpp │ │ ├── al_AudioIO.cpp │ │ ├── al_AudioIOData.cpp │ │ ├── al_Bluetooth.cpp │ │ ├── al_BluetoothOSX.mm │ │ ├── al_CSVReader.cpp │ │ ├── al_ControlNav.cpp │ │ ├── al_File.cpp │ │ ├── al_HID.cpp │ │ ├── al_MIDI.cpp │ │ ├── al_MRC.cpp │ │ ├── al_RenderToDisk.cpp │ │ ├── al_Serial.cpp │ │ ├── al_Socket.cpp │ │ ├── al_Window.cpp │ │ ├── al_WindowGLUT.cpp │ │ ├── al_WindowOSX.mm │ │ ├── al_WindowSDL.cpp │ │ └── hidapi.c │ ├── protocol │ │ ├── al_OSC.cpp │ │ ├── al_Zeroconf.cpp │ │ └── al_Zeroconf_OSX.mm │ ├── sound │ │ ├── al_Ambisonics.cpp │ │ ├── al_AudioScene.cpp │ │ ├── al_Biquad.cpp │ │ ├── al_Dbap.cpp │ │ └── al_Vbap.cpp │ ├── spatial │ │ ├── al_HashSpace.cpp │ │ └── al_Pose.cpp │ ├── system │ │ ├── al_Info.cpp │ │ ├── al_InfoOSX.mm │ │ ├── al_MainLoop.cpp │ │ ├── al_MainLoopOSX.mm │ │ ├── al_PeriodicThread.cpp │ │ ├── al_Printing.cpp │ │ ├── al_Thread.cpp │ │ ├── al_Time.cpp │ │ └── al_Watcher.cpp │ ├── types │ │ ├── al_Array.cpp │ │ ├── al_Array_C.c │ │ ├── al_Color.cpp │ │ ├── al_Conversion.cpp │ │ └── al_MsgQueue.cpp │ └── ui │ │ ├── al_Composition.cpp │ │ ├── al_HtmlInterfaceServer.cpp │ │ ├── al_Parameter.cpp │ │ ├── al_Preset.cpp │ │ ├── al_PresetMIDI.cpp │ │ ├── al_PresetMapper.cpp │ │ ├── al_PresetSequencer.cpp │ │ └── al_SequenceRecorder.cpp └── unitTests │ ├── CMakeLists.txt │ ├── unitTests.cpp │ ├── utAllocore.h │ ├── utAmbisonics.cpp │ ├── utAsset.cpp │ ├── utAudioScene.cpp │ ├── utFile.cpp │ ├── utGraphicsDraw.cpp │ ├── utGraphicsMesh.cpp │ ├── utIOAudioIO.cpp │ ├── utIOSocket.cpp │ ├── utIOWindowGL.cpp │ ├── utMath.cpp │ ├── utMathSpherical.cpp │ ├── utProtocolOSC.cpp │ ├── utProtocolSerialize.cpp │ ├── utSpatial.cpp │ ├── utSystem.cpp │ ├── utThread.cpp │ ├── utTypes.cpp │ └── utTypesConversion.cpp ├── allocv ├── CMakeLists.txt ├── allocv │ ├── al_OpenCV.hpp │ └── al_VideoCapture.hpp ├── dependencies ├── examples │ ├── beetle.mp4 │ ├── depthSensor.cpp │ ├── videoCapture.cpp │ └── videoCapture2.cpp └── src │ ├── al_OpenCV.cpp │ └── al_VideoCapture.cpp ├── allonect ├── 66-kinect.rules ├── Makefile ├── allonect │ └── al_Freenect.hpp ├── dependencies ├── examples │ ├── flags.txt │ ├── freenect_calibrate.cpp │ └── freenect_send.cpp └── src │ └── al_Freenect.cpp ├── allosphere ├── CMakeLists.txt ├── allosphere │ └── al_AlloSphereApp.hpp ├── dependencies ├── examples │ ├── 162.ico │ ├── allosphereApp.cpp │ └── allosphereAppAudio.cpp └── src │ └── al_AlloSphereApp.cpp ├── alloutil ├── CMakeLists.txt ├── alloutil │ ├── al_AlloSphere.hpp │ ├── al_AlloSphereAudioSpatializer.hpp │ ├── al_AlloSphereSpeakerLayout.hpp │ ├── al_AudioRenderer.hpp │ ├── al_CubeMapFBO.hpp │ ├── al_FPS.hpp │ ├── al_Field3D.hpp │ ├── al_FileWatcher.hpp │ ├── al_FrameBufferGL.hpp │ ├── al_InterfaceServerClient.hpp │ ├── al_Lua.hpp │ ├── al_Navigator.hpp │ ├── al_OITFbo.hpp │ ├── al_OmniApp.hpp │ ├── al_OmniStereo.hpp │ ├── al_OmniStereoGraphicsRenderer.hpp │ ├── al_OverlayTextGL.hpp │ ├── al_RayApp.hpp │ ├── al_RayCastingGraphicsRenderer.hpp │ ├── al_RayStereo.hpp │ ├── al_ResourceManager.hpp │ ├── al_ShaderManager.hpp │ ├── al_ShotList.hpp │ ├── al_Simulator.hpp │ ├── al_SliceViewer.hpp │ ├── al_TextureGL.hpp │ ├── al_VCR.hpp │ ├── al_VoxelStack.hpp │ └── al_WarpBlend.hpp ├── dependencies ├── examples │ ├── VCR.cpp │ ├── cubemap.cpp │ ├── fluid.cpp │ ├── oit.cpp │ ├── omni.cpp │ ├── omniTextRendering.cpp │ ├── omniWithFog.cpp │ ├── showCubeMapFaces.cpp │ └── vbo_omni.cpp └── src │ ├── al_FileWatcher.cpp │ ├── al_InterfaceServerClient.cpp │ ├── al_OmniStereo.cpp │ ├── al_RayStereo.cpp │ ├── al_ResourceManager.cpp │ ├── al_Simulator.cpp │ ├── al_SliceViewer.cpp │ └── al_WarpBlend.cpp ├── cmake_modules ├── CMakeRunTargets.cmake ├── FindAPR.cmake ├── FindAlloGLV.cmake ├── FindAllocore.cmake ├── FindAlloutil.cmake ├── FindAssimp.cmake ├── FindCuttlebone.cmake ├── FindFreeImage.cmake ├── FindFreetype.cmake ├── FindGLEW.cmake ├── FindGLV.cmake ├── FindGamma.cmake ├── FindHelper.cmake ├── FindJack.cmake ├── FindJsoncpp.cmake ├── FindLibSndFile.cmake ├── FindLiblo.cmake ├── FindLibusb.cmake ├── FindLuaJIT.cmake ├── FindPhasespace.cmake ├── FindPortaudio.cmake ├── FindUdev.cmake ├── Findvsr.cmake ├── LibFindMacros.cmake └── make_dep.cmake ├── coding_style.txt ├── debug.sh ├── distclean ├── doc ├── .gitignore ├── Doxyfile ├── documents │ ├── AlloCoreDesign.graffle │ ├── AlloCoreDesign.jpg │ ├── module-dependencies.graffle │ └── module-dependencies.jpg ├── generate_system_info.sh ├── licenses │ ├── AlloCore-license.txt │ └── serial-license.txt ├── logo.png └── www │ ├── index.html │ └── style.css ├── examples ├── audioScene │ └── audioScene.cpp ├── dependencies │ ├── broadcaster.cpp │ └── flags.cmake ├── multifile │ ├── multifile.cpp │ ├── mywindow.cpp │ └── mywindow.hpp ├── mysql │ ├── Inconsolata.otf │ ├── README.md │ ├── dependencies │ ├── flags.cmake │ └── mysql.cpp ├── openni │ ├── README.md │ ├── dependencies │ ├── flags.cmake │ └── simpleViewer.cpp ├── raycaster │ ├── rayApp_shaderFromFile.cpp │ ├── rayApp_shaderFromString.cpp │ ├── toroid.frag │ └── toroid.vert └── vtk │ ├── flags.cmake │ ├── vtk_example.cpp │ └── vtk_omni_example.cpp ├── install_all_dependencies.sh ├── run.sh └── tools ├── allorun ├── allorun.py ├── allosphere.py ├── appnode.py └── local.py └── project-generator ├── README.md └── alloproject.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/README.md -------------------------------------------------------------------------------- /alloGLV/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/CMakeLists.txt -------------------------------------------------------------------------------- /alloGLV/alloGLV/al_ControlGLV.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/alloGLV/al_ControlGLV.hpp -------------------------------------------------------------------------------- /alloGLV/alloGLV/al_ParameterGUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/alloGLV/al_ParameterGUI.hpp -------------------------------------------------------------------------------- /alloGLV/alloGLV/al_ProtoApp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/alloGLV/al_ProtoApp.hpp -------------------------------------------------------------------------------- /alloGLV/alloGLV/al_SequencerGUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/alloGLV/al_SequencerGUI.hpp -------------------------------------------------------------------------------- /alloGLV/examples/appGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/examples/appGUI.cpp -------------------------------------------------------------------------------- /alloGLV/examples/detachableGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/examples/detachableGUI.cpp -------------------------------------------------------------------------------- /alloGLV/examples/parametergui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/examples/parametergui.cpp -------------------------------------------------------------------------------- /alloGLV/examples/presetsgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/examples/presetsgui.cpp -------------------------------------------------------------------------------- /alloGLV/examples/simpleGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/examples/simpleGUI.cpp -------------------------------------------------------------------------------- /alloGLV/src/al_ControlGLV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/src/al_ControlGLV.cpp -------------------------------------------------------------------------------- /alloGLV/src/al_ParameterGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/src/al_ParameterGUI.cpp -------------------------------------------------------------------------------- /alloGLV/src/al_ProtoApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/src/al_ProtoApp.cpp -------------------------------------------------------------------------------- /alloGLV/src/al_SequencerGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloGLV/src/al_SequencerGUI.cpp -------------------------------------------------------------------------------- /alloaudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/CMakeLists.txt -------------------------------------------------------------------------------- /alloaudio/alloaudio/al_AmbiFilePlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/alloaudio/al_AmbiFilePlayer.hpp -------------------------------------------------------------------------------- /alloaudio/alloaudio/al_AmbiTunedDecoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/alloaudio/al_AmbiTunedDecoder.hpp -------------------------------------------------------------------------------- /alloaudio/alloaudio/al_AmbisonicsConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/alloaudio/al_AmbisonicsConfig.hpp -------------------------------------------------------------------------------- /alloaudio/alloaudio/al_Convolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/alloaudio/al_Convolver.hpp -------------------------------------------------------------------------------- /alloaudio/alloaudio/al_Decorrelation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/alloaudio/al_Decorrelation.hpp -------------------------------------------------------------------------------- /alloaudio/alloaudio/al_OutputMaster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/alloaudio/al_OutputMaster.hpp -------------------------------------------------------------------------------- /alloaudio/alloaudio/al_SoundfileBuffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/alloaudio/al_SoundfileBuffered.hpp -------------------------------------------------------------------------------- /alloaudio/alloaudio/butter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/alloaudio/butter.h -------------------------------------------------------------------------------- /alloaudio/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/dependencies -------------------------------------------------------------------------------- /alloaudio/examples/ambifilePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/examples/ambifilePlayer.cpp -------------------------------------------------------------------------------- /alloaudio/examples/decorrelation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/examples/decorrelation.cpp -------------------------------------------------------------------------------- /alloaudio/examples/multichannelControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/examples/multichannelControl.cpp -------------------------------------------------------------------------------- /alloaudio/examples/multichannelConvolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/examples/multichannelConvolution.cpp -------------------------------------------------------------------------------- /alloaudio/examples/multichannelScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/examples/multichannelScope.cpp -------------------------------------------------------------------------------- /alloaudio/interfaces/alloaudio-main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/interfaces/alloaudio-main.html -------------------------------------------------------------------------------- /alloaudio/interfaces/alloaudio-meters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/interfaces/alloaudio-meters.html -------------------------------------------------------------------------------- /alloaudio/src/al_AmbiFilePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/al_AmbiFilePlayer.cpp -------------------------------------------------------------------------------- /alloaudio/src/al_AmbiTunedDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/al_AmbiTunedDecoder.cpp -------------------------------------------------------------------------------- /alloaudio/src/al_Convolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/al_Convolver.cpp -------------------------------------------------------------------------------- /alloaudio/src/al_Decorrelation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/al_Decorrelation.cpp -------------------------------------------------------------------------------- /alloaudio/src/al_OutputMaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/al_OutputMaster.cpp -------------------------------------------------------------------------------- /alloaudio/src/al_SoundfileBuffered.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/al_SoundfileBuffered.cpp -------------------------------------------------------------------------------- /alloaudio/src/butter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/butter.cpp -------------------------------------------------------------------------------- /alloaudio/src/zita-convolver-3.1.0/AUTHORS: -------------------------------------------------------------------------------- 1 | Fons Adriaensen 2 | -------------------------------------------------------------------------------- /alloaudio/src/zita-convolver-3.1.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/zita-convolver-3.1.0/COPYING -------------------------------------------------------------------------------- /alloaudio/src/zita-convolver-3.1.0/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/zita-convolver-3.1.0/INSTALL -------------------------------------------------------------------------------- /alloaudio/src/zita-convolver-3.1.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/zita-convolver-3.1.0/README -------------------------------------------------------------------------------- /alloaudio/src/zita-convolver-3.1.0/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/zita-convolver-3.1.0/libs/Makefile -------------------------------------------------------------------------------- /alloaudio/src/zita-convolver-3.1.0/libs/Makefile-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/zita-convolver-3.1.0/libs/Makefile-linux -------------------------------------------------------------------------------- /alloaudio/src/zita-convolver-3.1.0/libs/Makefile-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/zita-convolver-3.1.0/libs/Makefile-osx -------------------------------------------------------------------------------- /alloaudio/src/zita-convolver-3.1.0/libs/zita-convolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/zita-convolver-3.1.0/libs/zita-convolver.cc -------------------------------------------------------------------------------- /alloaudio/src/zita-convolver-3.1.0/libs/zita-convolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/src/zita-convolver-3.1.0/libs/zita-convolver.h -------------------------------------------------------------------------------- /alloaudio/unitTests/alloaudioTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/unitTests/alloaudioTests.cpp -------------------------------------------------------------------------------- /alloaudio/unitTests/convolverTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/unitTests/convolverTests.cpp -------------------------------------------------------------------------------- /alloaudio/unitTests/decorrelationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloaudio/unitTests/decorrelationTests.cpp -------------------------------------------------------------------------------- /allocore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/CMakeLists.txt -------------------------------------------------------------------------------- /allocore/allocore/al_Allocore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/al_Allocore.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/OpenGLSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/OpenGLSupport.txt -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Asset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Asset.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_BufferObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_BufferObject.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_DisplayList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_DisplayList.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_EasyFBO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_EasyFBO.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_FBO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_FBO.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Font.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_GPUObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_GPUObject.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Graphics.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Image.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Isosurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Isosurface.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Lens.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Lens.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Light.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Mesh.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_MeshVBO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_MeshVBO.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_OpenGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_OpenGL.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Screenshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Screenshot.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Shader.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Shapes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Shapes.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Slab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Slab.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Stereographic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Stereographic.hpp -------------------------------------------------------------------------------- /allocore/allocore/graphics/al_Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/graphics/al_Texture.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_App.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_App.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_AudioIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_AudioIO.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_AudioIOData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_AudioIOData.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_Bluetooth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_Bluetooth.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_CSVReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_CSVReader.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_ControlNav.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_ControlNav.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_File.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_HID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_HID.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_MIDI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_MIDI.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_MRC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_MRC.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_RenderToDisk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_RenderToDisk.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_Serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_Serial.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_Socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_Socket.hpp -------------------------------------------------------------------------------- /allocore/allocore/io/al_Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/io/al_Window.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Analysis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Analysis.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Complex.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Constants.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Frustum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Frustum.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Functions.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Interpolation.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Interval.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Mat.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Matrix4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Matrix4.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Plane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Plane.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Quat.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Random.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Ray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Ray.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Spherical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Spherical.hpp -------------------------------------------------------------------------------- /allocore/allocore/math/al_Vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/math/al_Vec.hpp -------------------------------------------------------------------------------- /allocore/allocore/protocol/al_OSC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/protocol/al_OSC.hpp -------------------------------------------------------------------------------- /allocore/allocore/protocol/al_Zeroconf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/protocol/al_Zeroconf.hpp -------------------------------------------------------------------------------- /allocore/allocore/sound/al_Ambisonics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/sound/al_Ambisonics.hpp -------------------------------------------------------------------------------- /allocore/allocore/sound/al_AudioScene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/sound/al_AudioScene.hpp -------------------------------------------------------------------------------- /allocore/allocore/sound/al_Biquad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/sound/al_Biquad.hpp -------------------------------------------------------------------------------- /allocore/allocore/sound/al_Crossover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/sound/al_Crossover.hpp -------------------------------------------------------------------------------- /allocore/allocore/sound/al_Dbap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/sound/al_Dbap.hpp -------------------------------------------------------------------------------- /allocore/allocore/sound/al_Reverb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/sound/al_Reverb.hpp -------------------------------------------------------------------------------- /allocore/allocore/sound/al_Speaker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/sound/al_Speaker.hpp -------------------------------------------------------------------------------- /allocore/allocore/sound/al_StereoPanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/sound/al_StereoPanner.hpp -------------------------------------------------------------------------------- /allocore/allocore/sound/al_Vbap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/sound/al_Vbap.hpp -------------------------------------------------------------------------------- /allocore/allocore/spatial/al_Curve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/spatial/al_Curve.hpp -------------------------------------------------------------------------------- /allocore/allocore/spatial/al_DistAtten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/spatial/al_DistAtten.hpp -------------------------------------------------------------------------------- /allocore/allocore/spatial/al_HashSpace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/spatial/al_HashSpace.hpp -------------------------------------------------------------------------------- /allocore/allocore/spatial/al_Pose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/spatial/al_Pose.hpp -------------------------------------------------------------------------------- /allocore/allocore/system/al_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/al_Config.h -------------------------------------------------------------------------------- /allocore/allocore/system/al_Info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/al_Info.hpp -------------------------------------------------------------------------------- /allocore/allocore/system/al_MainLoop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/al_MainLoop.hpp -------------------------------------------------------------------------------- /allocore/allocore/system/al_PeriodicThread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/al_PeriodicThread.hpp -------------------------------------------------------------------------------- /allocore/allocore/system/al_Printing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/al_Printing.hpp -------------------------------------------------------------------------------- /allocore/allocore/system/al_Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/al_Thread.hpp -------------------------------------------------------------------------------- /allocore/allocore/system/al_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/al_Time.h -------------------------------------------------------------------------------- /allocore/allocore/system/al_Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/al_Time.hpp -------------------------------------------------------------------------------- /allocore/allocore/system/al_Watcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/al_Watcher.hpp -------------------------------------------------------------------------------- /allocore/allocore/system/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/system/pstdint.h -------------------------------------------------------------------------------- /allocore/allocore/types/al_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/types/al_Array.h -------------------------------------------------------------------------------- /allocore/allocore/types/al_Array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/types/al_Array.hpp -------------------------------------------------------------------------------- /allocore/allocore/types/al_Buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/types/al_Buffer.hpp -------------------------------------------------------------------------------- /allocore/allocore/types/al_Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/types/al_Color.hpp -------------------------------------------------------------------------------- /allocore/allocore/types/al_Conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/types/al_Conversion.hpp -------------------------------------------------------------------------------- /allocore/allocore/types/al_MsgQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/types/al_MsgQueue.hpp -------------------------------------------------------------------------------- /allocore/allocore/types/al_MsgTube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/types/al_MsgTube.hpp -------------------------------------------------------------------------------- /allocore/allocore/types/al_SingleRWRingBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/types/al_SingleRWRingBuffer.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_BoundingBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_BoundingBox.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_Composition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_Composition.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_Gnomon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_Gnomon.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_HtmlInterfaceServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_HtmlInterfaceServer.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_Parameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_Parameter.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_ParameterMIDI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_ParameterMIDI.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_Pickable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_Pickable.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_Preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_Preset.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_PresetMIDI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_PresetMIDI.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_PresetMapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_PresetMapper.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_PresetSequencer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_PresetSequencer.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_RotateHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_RotateHandle.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_SequenceRecorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_SequenceRecorder.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_SynthSequencer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_SynthSequencer.hpp -------------------------------------------------------------------------------- /allocore/allocore/ui/al_TranslateHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/allocore/ui/al_TranslateHandle.hpp -------------------------------------------------------------------------------- /allocore/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/dependencies -------------------------------------------------------------------------------- /allocore/examples/av/MsgTube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/av/MsgTube.cpp -------------------------------------------------------------------------------- /allocore/examples/av/audioToGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/av/audioToGraphics.cpp -------------------------------------------------------------------------------- /allocore/examples/av/helloVirtualWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/av/helloVirtualWorld.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/2D.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/VBOManyShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/VBOManyShape.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/calibrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/calibrate.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/camera.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/camera2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/camera2.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/cieColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/cieColor.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/displayList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/displayList.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/fbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/fbo.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/font.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/frameFeedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/frameFeedback.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/frontBack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/frontBack.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/frustumTesting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/frustumTesting.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/isosurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/isosurface.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/lighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/lighting.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/meshManyShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/meshManyShape.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/meshSquare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/meshSquare.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/mirror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/mirror.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/modelShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/modelShader.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/omnigraphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/omnigraphic.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/pickRay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/pickRay.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/platonics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/platonics.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/pointSprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/pointSprites.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/query.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/renderDepthToTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/renderDepthToTexture.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/renderToTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/renderToTexture.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/shaderFog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/shaderFog.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/shaderPhong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/shaderPhong.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/shaderSprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/shaderSprites.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/shaderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/shaderTexture.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/shapeGallery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/shapeGallery.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/stereographic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/stereographic.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/texture.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/texture3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/texture3d.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/textureAlpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/textureAlpha.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/textureImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/textureImage.cpp -------------------------------------------------------------------------------- /allocore/examples/graphics/transformations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/graphics/transformations.cpp -------------------------------------------------------------------------------- /allocore/examples/io/AllocoreTest/Interface.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/AllocoreTest/Interface.lua -------------------------------------------------------------------------------- /allocore/examples/io/AllocoreTest/audio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/AllocoreTest/audio.lua -------------------------------------------------------------------------------- /allocore/examples/io/AllocoreTest/joystick.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/AllocoreTest/joystick.lua -------------------------------------------------------------------------------- /allocore/examples/io/DeviceServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/DeviceServer.cpp -------------------------------------------------------------------------------- /allocore/examples/io/HID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/HID.cpp -------------------------------------------------------------------------------- /allocore/examples/io/Interface.Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/Interface.Server.cpp -------------------------------------------------------------------------------- /allocore/examples/io/OSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/OSC.cpp -------------------------------------------------------------------------------- /allocore/examples/io/OSCClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/OSCClient.cpp -------------------------------------------------------------------------------- /allocore/examples/io/OSCServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/OSCServer.cpp -------------------------------------------------------------------------------- /allocore/examples/io/appSimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/appSimple.cpp -------------------------------------------------------------------------------- /allocore/examples/io/audioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/audioDevice.cpp -------------------------------------------------------------------------------- /allocore/examples/io/bluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/bluetooth.cpp -------------------------------------------------------------------------------- /allocore/examples/io/csvreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/csvreader.cpp -------------------------------------------------------------------------------- /allocore/examples/io/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/directory.cpp -------------------------------------------------------------------------------- /allocore/examples/io/midiIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/midiIn.cpp -------------------------------------------------------------------------------- /allocore/examples/io/midiInApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/midiInApp.cpp -------------------------------------------------------------------------------- /allocore/examples/io/prettyVec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/prettyVec.cpp -------------------------------------------------------------------------------- /allocore/examples/io/renderToDisk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/renderToDisk.cpp -------------------------------------------------------------------------------- /allocore/examples/io/searchPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/searchPaths.cpp -------------------------------------------------------------------------------- /allocore/examples/io/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/serial.cpp -------------------------------------------------------------------------------- /allocore/examples/io/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/socket.cpp -------------------------------------------------------------------------------- /allocore/examples/io/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/window.cpp -------------------------------------------------------------------------------- /allocore/examples/io/zeroconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/io/zeroconf.cpp -------------------------------------------------------------------------------- /allocore/examples/math/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/math/matrix.cpp -------------------------------------------------------------------------------- /allocore/examples/math/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/math/random.cpp -------------------------------------------------------------------------------- /allocore/examples/math/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/math/vector.cpp -------------------------------------------------------------------------------- /allocore/examples/simulation/flocking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/simulation/flocking.cpp -------------------------------------------------------------------------------- /allocore/examples/simulation/gravityWell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/simulation/gravityWell.cpp -------------------------------------------------------------------------------- /allocore/examples/simulation/levyFlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/simulation/levyFlight.cpp -------------------------------------------------------------------------------- /allocore/examples/simulation/mrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/simulation/mrc.cpp -------------------------------------------------------------------------------- /allocore/examples/simulation/particleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/simulation/particleSystem.cpp -------------------------------------------------------------------------------- /allocore/examples/simulation/waveEquation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/simulation/waveEquation.cpp -------------------------------------------------------------------------------- /allocore/examples/sound/ambiPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/sound/ambiPlayer.cpp -------------------------------------------------------------------------------- /allocore/examples/sound/audioScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/sound/audioScene.cpp -------------------------------------------------------------------------------- /allocore/examples/sound/multiFilePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/sound/multiFilePlayer.cpp -------------------------------------------------------------------------------- /allocore/examples/sound/probe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/sound/probe.cpp -------------------------------------------------------------------------------- /allocore/examples/sound/reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/sound/reverb.cpp -------------------------------------------------------------------------------- /allocore/examples/sound/speakerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/sound/speakerTest.cpp -------------------------------------------------------------------------------- /allocore/examples/sound/stereoscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/sound/stereoscene.cpp -------------------------------------------------------------------------------- /allocore/examples/sound/vbap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/sound/vbap.cpp -------------------------------------------------------------------------------- /allocore/examples/spatial/hashSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/spatial/hashSpace.cpp -------------------------------------------------------------------------------- /allocore/examples/spatial/sliceassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/spatial/sliceassembler.cpp -------------------------------------------------------------------------------- /allocore/examples/spatial/voxels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/spatial/voxels.cpp -------------------------------------------------------------------------------- /allocore/examples/system/parallelThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/system/parallelThreads.cpp -------------------------------------------------------------------------------- /allocore/examples/system/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/system/thread.cpp -------------------------------------------------------------------------------- /allocore/examples/system/threadPeriodic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/system/threadPeriodic.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/boundingBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/boundingBox.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/htmlInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/htmlInterface.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/parameter.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/parametermidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/parametermidi.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/pickable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/pickable.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/pickableChildren.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/pickableChildren.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/presetmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/presetmaps.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/presets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/presets.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/recorder.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/rotateHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/rotateHandle.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/sequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/sequencer.cpp -------------------------------------------------------------------------------- /allocore/examples/ui/translateHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/examples/ui/translateHandle.cpp -------------------------------------------------------------------------------- /allocore/external/bluetoothWindows/BluetoothAPIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/bluetoothWindows/BluetoothAPIs.h -------------------------------------------------------------------------------- /allocore/external/bluetoothWindows/bthdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/bluetoothWindows/bthdef.h -------------------------------------------------------------------------------- /allocore/external/bluetoothWindows/bthsdpdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/bluetoothWindows/bthsdpdef.h -------------------------------------------------------------------------------- /allocore/external/bluetoothWindows/ws2bth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/bluetoothWindows/ws2bth.h -------------------------------------------------------------------------------- /allocore/external/hidapi/hid_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/hidapi/hid_linux.c -------------------------------------------------------------------------------- /allocore/external/hidapi/hid_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/hidapi/hid_mac.c -------------------------------------------------------------------------------- /allocore/external/hidapi/hid_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/hidapi/hid_windows.c -------------------------------------------------------------------------------- /allocore/external/hidapi/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/hidapi/hidapi.h -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/IpEndpointName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/IpEndpointName.cpp -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/IpEndpointName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/IpEndpointName.h -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/NetworkingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/NetworkingUtils.h -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/PacketListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/PacketListener.h -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/TimerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/TimerListener.h -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/UdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/UdpSocket.h -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/posix/NetworkingUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/posix/NetworkingUtils.cpp -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/posix/UdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/posix/UdpSocket.cpp -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/win32/NetworkingUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/win32/NetworkingUtils.cpp -------------------------------------------------------------------------------- /allocore/external/oscpack/ip/win32/UdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/ip/win32/UdpSocket.cpp -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/MessageMappingOscPacketListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/MessageMappingOscPacketListener.h -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscException.h -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscHostEndianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscHostEndianness.h -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscOutboundPacketStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscOutboundPacketStream.cpp -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscOutboundPacketStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscOutboundPacketStream.h -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscPacketListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscPacketListener.h -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscPrintReceivedElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscPrintReceivedElements.cpp -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscPrintReceivedElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscPrintReceivedElements.h -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscReceivedElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscReceivedElements.cpp -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscReceivedElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscReceivedElements.h -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscTypes.cpp -------------------------------------------------------------------------------- /allocore/external/oscpack/osc/OscTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/oscpack/osc/OscTypes.h -------------------------------------------------------------------------------- /allocore/external/serial/list_ports_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/serial/list_ports_linux.cc -------------------------------------------------------------------------------- /allocore/external/serial/list_ports_osx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/serial/list_ports_osx.cc -------------------------------------------------------------------------------- /allocore/external/serial/list_ports_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/serial/list_ports_win.cc -------------------------------------------------------------------------------- /allocore/external/serial/serial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/serial/serial.cc -------------------------------------------------------------------------------- /allocore/external/serial/serial/impl/serial/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allocore/external/serial/serial/impl/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/serial/serial/impl/unix.h -------------------------------------------------------------------------------- /allocore/external/serial/serial/impl/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/serial/serial/impl/win.h -------------------------------------------------------------------------------- /allocore/external/serial/serial/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allocore/external/serial/serial/v8stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/serial/serial/v8stdint.h -------------------------------------------------------------------------------- /allocore/external/serial/unix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/serial/unix.cc -------------------------------------------------------------------------------- /allocore/external/serial/win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/external/serial/win.cc -------------------------------------------------------------------------------- /allocore/modules/apr_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/apr_module.cmake -------------------------------------------------------------------------------- /allocore/modules/assimp_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/assimp_module.cmake -------------------------------------------------------------------------------- /allocore/modules/font_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/font_module.cmake -------------------------------------------------------------------------------- /allocore/modules/freeimage_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/freeimage_module.cmake -------------------------------------------------------------------------------- /allocore/modules/gl_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/gl_module.cmake -------------------------------------------------------------------------------- /allocore/modules/glut_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/glut_module.cmake -------------------------------------------------------------------------------- /allocore/modules/libsndfile_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/libsndfile_module.cmake -------------------------------------------------------------------------------- /allocore/modules/osc_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/osc_module.cmake -------------------------------------------------------------------------------- /allocore/modules/portaudio_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/portaudio_module.cmake -------------------------------------------------------------------------------- /allocore/modules/zeroconf_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/modules/zeroconf_module.cmake -------------------------------------------------------------------------------- /allocore/share/data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/data/test.csv -------------------------------------------------------------------------------- /allocore/share/fonts/VeraMoBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/fonts/VeraMoBI.ttf -------------------------------------------------------------------------------- /allocore/share/fonts/VeraMoBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/fonts/VeraMoBd.ttf -------------------------------------------------------------------------------- /allocore/share/fonts/VeraMoIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/fonts/VeraMoIt.ttf -------------------------------------------------------------------------------- /allocore/share/fonts/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/fonts/VeraMono.ttf -------------------------------------------------------------------------------- /allocore/share/images/hubble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/images/hubble.jpg -------------------------------------------------------------------------------- /allocore/share/images/tiny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/images/tiny.jpg -------------------------------------------------------------------------------- /allocore/share/imod_data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/imod_data/README -------------------------------------------------------------------------------- /allocore/share/imod_data/golgi.mrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/imod_data/golgi.mrc -------------------------------------------------------------------------------- /allocore/share/models/bunny_small.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/models/bunny_small.obj -------------------------------------------------------------------------------- /allocore/share/models/ducky.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/models/ducky.obj -------------------------------------------------------------------------------- /allocore/share/shaders/basicFragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/basicFragment.glsl -------------------------------------------------------------------------------- /allocore/share/shaders/basicVertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/basicVertex.glsl -------------------------------------------------------------------------------- /allocore/share/shaders/cel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/cel.fs -------------------------------------------------------------------------------- /allocore/share/shaders/cel.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/cel.vs -------------------------------------------------------------------------------- /allocore/share/shaders/celshader.sbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/celshader.sbproj -------------------------------------------------------------------------------- /allocore/share/shaders/omni.sbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/omni.sbproj -------------------------------------------------------------------------------- /allocore/share/shaders/omniFragment.glsl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/omniFragment.glsl.fs -------------------------------------------------------------------------------- /allocore/share/shaders/omniVertex.glsl.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/omniVertex.glsl.vs -------------------------------------------------------------------------------- /allocore/share/shaders/stereoFragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/stereoFragment.glsl -------------------------------------------------------------------------------- /allocore/share/shaders/stereoVertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/share/shaders/stereoVertex.glsl -------------------------------------------------------------------------------- /allocore/src/graphics/al_Asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Asset.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_BufferObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_BufferObject.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_FBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_FBO.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Font.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_GPUObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_GPUObject.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Graphics.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Image.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Isosurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Isosurface.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Lens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Lens.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Light.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Mesh.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_MeshVBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_MeshVBO.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Screenshot.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Shader.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Shapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Shapes.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Stereographic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Stereographic.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/al_Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/al_Texture.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/archived/al_GraphicsBackendOpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/archived/al_GraphicsBackendOpenGL.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/archived/al_GraphicsOpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/archived/al_GraphicsOpenGL.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/archived/al_GraphicsOpenGLES1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/archived/al_GraphicsOpenGLES1.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/archived/al_GraphicsOpenGLES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/archived/al_GraphicsOpenGLES2.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/archived/al_Graphics_Old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/archived/al_Graphics_Old.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/archived/al_Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/archived/al_Model.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/archived/al_Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/archived/al_Surface.cpp -------------------------------------------------------------------------------- /allocore/src/graphics/pending/al_Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/graphics/pending/al_Surface.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_App.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_AudioIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_AudioIO.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_AudioIOData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_AudioIOData.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_Bluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_Bluetooth.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_BluetoothOSX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_BluetoothOSX.mm -------------------------------------------------------------------------------- /allocore/src/io/al_CSVReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_CSVReader.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_ControlNav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_ControlNav.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_File.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_HID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_HID.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_MIDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_MIDI.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_MRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_MRC.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_RenderToDisk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_RenderToDisk.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_Serial.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_Socket.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_Window.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_WindowGLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_WindowGLUT.cpp -------------------------------------------------------------------------------- /allocore/src/io/al_WindowOSX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_WindowOSX.mm -------------------------------------------------------------------------------- /allocore/src/io/al_WindowSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/al_WindowSDL.cpp -------------------------------------------------------------------------------- /allocore/src/io/hidapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/io/hidapi.c -------------------------------------------------------------------------------- /allocore/src/protocol/al_OSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/protocol/al_OSC.cpp -------------------------------------------------------------------------------- /allocore/src/protocol/al_Zeroconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/protocol/al_Zeroconf.cpp -------------------------------------------------------------------------------- /allocore/src/protocol/al_Zeroconf_OSX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/protocol/al_Zeroconf_OSX.mm -------------------------------------------------------------------------------- /allocore/src/sound/al_Ambisonics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/sound/al_Ambisonics.cpp -------------------------------------------------------------------------------- /allocore/src/sound/al_AudioScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/sound/al_AudioScene.cpp -------------------------------------------------------------------------------- /allocore/src/sound/al_Biquad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/sound/al_Biquad.cpp -------------------------------------------------------------------------------- /allocore/src/sound/al_Dbap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/sound/al_Dbap.cpp -------------------------------------------------------------------------------- /allocore/src/sound/al_Vbap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/sound/al_Vbap.cpp -------------------------------------------------------------------------------- /allocore/src/spatial/al_HashSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/spatial/al_HashSpace.cpp -------------------------------------------------------------------------------- /allocore/src/spatial/al_Pose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/spatial/al_Pose.cpp -------------------------------------------------------------------------------- /allocore/src/system/al_Info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/system/al_Info.cpp -------------------------------------------------------------------------------- /allocore/src/system/al_InfoOSX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/system/al_InfoOSX.mm -------------------------------------------------------------------------------- /allocore/src/system/al_MainLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/system/al_MainLoop.cpp -------------------------------------------------------------------------------- /allocore/src/system/al_MainLoopOSX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/system/al_MainLoopOSX.mm -------------------------------------------------------------------------------- /allocore/src/system/al_PeriodicThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/system/al_PeriodicThread.cpp -------------------------------------------------------------------------------- /allocore/src/system/al_Printing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/system/al_Printing.cpp -------------------------------------------------------------------------------- /allocore/src/system/al_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/system/al_Thread.cpp -------------------------------------------------------------------------------- /allocore/src/system/al_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/system/al_Time.cpp -------------------------------------------------------------------------------- /allocore/src/system/al_Watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/system/al_Watcher.cpp -------------------------------------------------------------------------------- /allocore/src/types/al_Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/types/al_Array.cpp -------------------------------------------------------------------------------- /allocore/src/types/al_Array_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/types/al_Array_C.c -------------------------------------------------------------------------------- /allocore/src/types/al_Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/types/al_Color.cpp -------------------------------------------------------------------------------- /allocore/src/types/al_Conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/types/al_Conversion.cpp -------------------------------------------------------------------------------- /allocore/src/types/al_MsgQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/types/al_MsgQueue.cpp -------------------------------------------------------------------------------- /allocore/src/ui/al_Composition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/ui/al_Composition.cpp -------------------------------------------------------------------------------- /allocore/src/ui/al_HtmlInterfaceServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/ui/al_HtmlInterfaceServer.cpp -------------------------------------------------------------------------------- /allocore/src/ui/al_Parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/ui/al_Parameter.cpp -------------------------------------------------------------------------------- /allocore/src/ui/al_Preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/ui/al_Preset.cpp -------------------------------------------------------------------------------- /allocore/src/ui/al_PresetMIDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/ui/al_PresetMIDI.cpp -------------------------------------------------------------------------------- /allocore/src/ui/al_PresetMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/ui/al_PresetMapper.cpp -------------------------------------------------------------------------------- /allocore/src/ui/al_PresetSequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/ui/al_PresetSequencer.cpp -------------------------------------------------------------------------------- /allocore/src/ui/al_SequenceRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/src/ui/al_SequenceRecorder.cpp -------------------------------------------------------------------------------- /allocore/unitTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/CMakeLists.txt -------------------------------------------------------------------------------- /allocore/unitTests/unitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/unitTests.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utAllocore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utAllocore.h -------------------------------------------------------------------------------- /allocore/unitTests/utAmbisonics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utAmbisonics.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utAsset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utAsset.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utAudioScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utAudioScene.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utFile.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utGraphicsDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utGraphicsDraw.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utGraphicsMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utGraphicsMesh.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utIOAudioIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utIOAudioIO.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utIOSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utIOSocket.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utIOWindowGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utIOWindowGL.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utMath.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utMathSpherical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utMathSpherical.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utProtocolOSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utProtocolOSC.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utProtocolSerialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utProtocolSerialize.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utSpatial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utSpatial.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utSystem.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utThread.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utTypes.cpp -------------------------------------------------------------------------------- /allocore/unitTests/utTypesConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocore/unitTests/utTypesConversion.cpp -------------------------------------------------------------------------------- /allocv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/CMakeLists.txt -------------------------------------------------------------------------------- /allocv/allocv/al_OpenCV.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/allocv/al_OpenCV.hpp -------------------------------------------------------------------------------- /allocv/allocv/al_VideoCapture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/allocv/al_VideoCapture.hpp -------------------------------------------------------------------------------- /allocv/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/dependencies -------------------------------------------------------------------------------- /allocv/examples/beetle.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/examples/beetle.mp4 -------------------------------------------------------------------------------- /allocv/examples/depthSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/examples/depthSensor.cpp -------------------------------------------------------------------------------- /allocv/examples/videoCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/examples/videoCapture.cpp -------------------------------------------------------------------------------- /allocv/examples/videoCapture2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/examples/videoCapture2.cpp -------------------------------------------------------------------------------- /allocv/src/al_OpenCV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/src/al_OpenCV.cpp -------------------------------------------------------------------------------- /allocv/src/al_VideoCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allocv/src/al_VideoCapture.cpp -------------------------------------------------------------------------------- /allonect/66-kinect.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allonect/66-kinect.rules -------------------------------------------------------------------------------- /allonect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allonect/Makefile -------------------------------------------------------------------------------- /allonect/allonect/al_Freenect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allonect/allonect/al_Freenect.hpp -------------------------------------------------------------------------------- /allonect/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allonect/dependencies -------------------------------------------------------------------------------- /allonect/examples/flags.txt: -------------------------------------------------------------------------------- 1 | -lusb-1.0 -llua5.1 2 | -------------------------------------------------------------------------------- /allonect/examples/freenect_calibrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allonect/examples/freenect_calibrate.cpp -------------------------------------------------------------------------------- /allonect/examples/freenect_send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allonect/examples/freenect_send.cpp -------------------------------------------------------------------------------- /allonect/src/al_Freenect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allonect/src/al_Freenect.cpp -------------------------------------------------------------------------------- /allosphere/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allosphere/CMakeLists.txt -------------------------------------------------------------------------------- /allosphere/allosphere/al_AlloSphereApp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allosphere/allosphere/al_AlloSphereApp.hpp -------------------------------------------------------------------------------- /allosphere/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allosphere/dependencies -------------------------------------------------------------------------------- /allosphere/examples/162.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allosphere/examples/162.ico -------------------------------------------------------------------------------- /allosphere/examples/allosphereApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allosphere/examples/allosphereApp.cpp -------------------------------------------------------------------------------- /allosphere/examples/allosphereAppAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allosphere/examples/allosphereAppAudio.cpp -------------------------------------------------------------------------------- /allosphere/src/al_AlloSphereApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/allosphere/src/al_AlloSphereApp.cpp -------------------------------------------------------------------------------- /alloutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/CMakeLists.txt -------------------------------------------------------------------------------- /alloutil/alloutil/al_AlloSphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_AlloSphere.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_AlloSphereAudioSpatializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_AlloSphereAudioSpatializer.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_AlloSphereSpeakerLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_AlloSphereSpeakerLayout.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_AudioRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_AudioRenderer.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_CubeMapFBO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_CubeMapFBO.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_FPS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_FPS.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_Field3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_Field3D.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_FileWatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_FileWatcher.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_FrameBufferGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_FrameBufferGL.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_InterfaceServerClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_InterfaceServerClient.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_Lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_Lua.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_Navigator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_Navigator.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_OITFbo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_OITFbo.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_OmniApp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_OmniApp.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_OmniStereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_OmniStereo.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_OmniStereoGraphicsRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_OmniStereoGraphicsRenderer.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_OverlayTextGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_OverlayTextGL.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_RayApp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_RayApp.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_RayCastingGraphicsRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_RayCastingGraphicsRenderer.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_RayStereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_RayStereo.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_ResourceManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_ResourceManager.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_ShaderManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_ShaderManager.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_ShotList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_ShotList.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_Simulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_Simulator.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_SliceViewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_SliceViewer.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_TextureGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_TextureGL.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_VCR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_VCR.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_VoxelStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_VoxelStack.hpp -------------------------------------------------------------------------------- /alloutil/alloutil/al_WarpBlend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/alloutil/al_WarpBlend.hpp -------------------------------------------------------------------------------- /alloutil/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/dependencies -------------------------------------------------------------------------------- /alloutil/examples/VCR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/examples/VCR.cpp -------------------------------------------------------------------------------- /alloutil/examples/cubemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/examples/cubemap.cpp -------------------------------------------------------------------------------- /alloutil/examples/fluid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/examples/fluid.cpp -------------------------------------------------------------------------------- /alloutil/examples/oit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/examples/oit.cpp -------------------------------------------------------------------------------- /alloutil/examples/omni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/examples/omni.cpp -------------------------------------------------------------------------------- /alloutil/examples/omniTextRendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/examples/omniTextRendering.cpp -------------------------------------------------------------------------------- /alloutil/examples/omniWithFog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/examples/omniWithFog.cpp -------------------------------------------------------------------------------- /alloutil/examples/showCubeMapFaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/examples/showCubeMapFaces.cpp -------------------------------------------------------------------------------- /alloutil/examples/vbo_omni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/examples/vbo_omni.cpp -------------------------------------------------------------------------------- /alloutil/src/al_FileWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/src/al_FileWatcher.cpp -------------------------------------------------------------------------------- /alloutil/src/al_InterfaceServerClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/src/al_InterfaceServerClient.cpp -------------------------------------------------------------------------------- /alloutil/src/al_OmniStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/src/al_OmniStereo.cpp -------------------------------------------------------------------------------- /alloutil/src/al_RayStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/src/al_RayStereo.cpp -------------------------------------------------------------------------------- /alloutil/src/al_ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/src/al_ResourceManager.cpp -------------------------------------------------------------------------------- /alloutil/src/al_Simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/src/al_Simulator.cpp -------------------------------------------------------------------------------- /alloutil/src/al_SliceViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/src/al_SliceViewer.cpp -------------------------------------------------------------------------------- /alloutil/src/al_WarpBlend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/alloutil/src/al_WarpBlend.cpp -------------------------------------------------------------------------------- /cmake_modules/CMakeRunTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/CMakeRunTargets.cmake -------------------------------------------------------------------------------- /cmake_modules/FindAPR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindAPR.cmake -------------------------------------------------------------------------------- /cmake_modules/FindAlloGLV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindAlloGLV.cmake -------------------------------------------------------------------------------- /cmake_modules/FindAllocore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindAllocore.cmake -------------------------------------------------------------------------------- /cmake_modules/FindAlloutil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindAlloutil.cmake -------------------------------------------------------------------------------- /cmake_modules/FindAssimp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindAssimp.cmake -------------------------------------------------------------------------------- /cmake_modules/FindCuttlebone.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindCuttlebone.cmake -------------------------------------------------------------------------------- /cmake_modules/FindFreeImage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindFreeImage.cmake -------------------------------------------------------------------------------- /cmake_modules/FindFreetype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindFreetype.cmake -------------------------------------------------------------------------------- /cmake_modules/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindGLEW.cmake -------------------------------------------------------------------------------- /cmake_modules/FindGLV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindGLV.cmake -------------------------------------------------------------------------------- /cmake_modules/FindGamma.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindGamma.cmake -------------------------------------------------------------------------------- /cmake_modules/FindHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindHelper.cmake -------------------------------------------------------------------------------- /cmake_modules/FindJack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindJack.cmake -------------------------------------------------------------------------------- /cmake_modules/FindJsoncpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindJsoncpp.cmake -------------------------------------------------------------------------------- /cmake_modules/FindLibSndFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindLibSndFile.cmake -------------------------------------------------------------------------------- /cmake_modules/FindLiblo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindLiblo.cmake -------------------------------------------------------------------------------- /cmake_modules/FindLibusb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindLibusb.cmake -------------------------------------------------------------------------------- /cmake_modules/FindLuaJIT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindLuaJIT.cmake -------------------------------------------------------------------------------- /cmake_modules/FindPhasespace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindPhasespace.cmake -------------------------------------------------------------------------------- /cmake_modules/FindPortaudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindPortaudio.cmake -------------------------------------------------------------------------------- /cmake_modules/FindUdev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/FindUdev.cmake -------------------------------------------------------------------------------- /cmake_modules/Findvsr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/Findvsr.cmake -------------------------------------------------------------------------------- /cmake_modules/LibFindMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/LibFindMacros.cmake -------------------------------------------------------------------------------- /cmake_modules/make_dep.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/cmake_modules/make_dep.cmake -------------------------------------------------------------------------------- /coding_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/coding_style.txt -------------------------------------------------------------------------------- /debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/debug.sh -------------------------------------------------------------------------------- /distclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/distclean -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/documents/AlloCoreDesign.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/documents/AlloCoreDesign.graffle -------------------------------------------------------------------------------- /doc/documents/AlloCoreDesign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/documents/AlloCoreDesign.jpg -------------------------------------------------------------------------------- /doc/documents/module-dependencies.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/documents/module-dependencies.graffle -------------------------------------------------------------------------------- /doc/documents/module-dependencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/documents/module-dependencies.jpg -------------------------------------------------------------------------------- /doc/generate_system_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/generate_system_info.sh -------------------------------------------------------------------------------- /doc/licenses/AlloCore-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/licenses/AlloCore-license.txt -------------------------------------------------------------------------------- /doc/licenses/serial-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/licenses/serial-license.txt -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/logo.png -------------------------------------------------------------------------------- /doc/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/www/index.html -------------------------------------------------------------------------------- /doc/www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/doc/www/style.css -------------------------------------------------------------------------------- /examples/audioScene/audioScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/audioScene/audioScene.cpp -------------------------------------------------------------------------------- /examples/dependencies/broadcaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/dependencies/broadcaster.cpp -------------------------------------------------------------------------------- /examples/dependencies/flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/dependencies/flags.cmake -------------------------------------------------------------------------------- /examples/multifile/multifile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/multifile/multifile.cpp -------------------------------------------------------------------------------- /examples/multifile/mywindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/multifile/mywindow.cpp -------------------------------------------------------------------------------- /examples/multifile/mywindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/multifile/mywindow.hpp -------------------------------------------------------------------------------- /examples/mysql/Inconsolata.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/mysql/Inconsolata.otf -------------------------------------------------------------------------------- /examples/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/mysql/README.md -------------------------------------------------------------------------------- /examples/mysql/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/mysql/dependencies -------------------------------------------------------------------------------- /examples/mysql/flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/mysql/flags.cmake -------------------------------------------------------------------------------- /examples/mysql/mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/mysql/mysql.cpp -------------------------------------------------------------------------------- /examples/openni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/openni/README.md -------------------------------------------------------------------------------- /examples/openni/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/openni/dependencies -------------------------------------------------------------------------------- /examples/openni/flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/openni/flags.cmake -------------------------------------------------------------------------------- /examples/openni/simpleViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/openni/simpleViewer.cpp -------------------------------------------------------------------------------- /examples/raycaster/rayApp_shaderFromFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/raycaster/rayApp_shaderFromFile.cpp -------------------------------------------------------------------------------- /examples/raycaster/rayApp_shaderFromString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/raycaster/rayApp_shaderFromString.cpp -------------------------------------------------------------------------------- /examples/raycaster/toroid.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/raycaster/toroid.frag -------------------------------------------------------------------------------- /examples/raycaster/toroid.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/raycaster/toroid.vert -------------------------------------------------------------------------------- /examples/vtk/flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/vtk/flags.cmake -------------------------------------------------------------------------------- /examples/vtk/vtk_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/vtk/vtk_example.cpp -------------------------------------------------------------------------------- /examples/vtk/vtk_omni_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/examples/vtk/vtk_omni_example.cpp -------------------------------------------------------------------------------- /install_all_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/install_all_dependencies.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/run.sh -------------------------------------------------------------------------------- /tools/allorun/allorun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/tools/allorun/allorun.py -------------------------------------------------------------------------------- /tools/allorun/allosphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/tools/allorun/allosphere.py -------------------------------------------------------------------------------- /tools/allorun/appnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/tools/allorun/appnode.py -------------------------------------------------------------------------------- /tools/allorun/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/tools/allorun/local.py -------------------------------------------------------------------------------- /tools/project-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/tools/project-generator/README.md -------------------------------------------------------------------------------- /tools/project-generator/alloproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloSphere-Research-Group/AlloSystem/HEAD/tools/project-generator/alloproject.py --------------------------------------------------------------------------------