├── ext ├── ImGuizmo │ ├── .gitignore │ ├── Images │ │ └── nodeeditor.jpg │ ├── bin │ │ ├── ImGuizmoSample.exe │ │ └── imgui.ini │ ├── vcpkg-example │ │ ├── vcpkg.json │ │ ├── imgui.ini │ │ ├── CMakeLists.txt │ │ └── README.md │ ├── .editorconfig │ ├── Makefile │ ├── LICENSE │ └── ImGradient.h ├── pugixml │ ├── README.md │ └── CMakeLists.txt ├── imgui │ ├── examples │ │ ├── example_android_opengl3 │ │ │ ├── android │ │ │ │ ├── settings.gradle │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ └── app │ │ │ │ │ ├── src │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── java │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── build.gradle │ │ │ └── CMakeLists.txt │ │ ├── libs │ │ │ ├── glfw │ │ │ │ ├── lib-vc2010-32 │ │ │ │ │ └── glfw3.lib │ │ │ │ ├── lib-vc2010-64 │ │ │ │ │ └── glfw3.lib │ │ │ │ └── COPYING.txt │ │ │ └── usynergy │ │ │ │ └── README.txt │ │ ├── example_null │ │ │ ├── build_win32.bat │ │ │ └── main.cpp │ │ ├── example_apple_metal │ │ │ ├── README.md │ │ │ ├── macOS │ │ │ │ └── Info-macOS.plist │ │ │ └── iOS │ │ │ │ ├── Info-iOS.plist │ │ │ │ └── LaunchScreen.storyboard │ │ ├── example_win32_directx9 │ │ │ ├── build_win32.bat │ │ │ └── example_win32_directx9.vcxproj.filters │ │ ├── example_glfw_opengl2 │ │ │ ├── build_win32.bat │ │ │ └── example_glfw_opengl2.vcxproj.filters │ │ ├── example_glfw_opengl3 │ │ │ └── build_win32.bat │ │ ├── example_sdl2_sdlrenderer │ │ │ ├── build_win32.bat │ │ │ ├── README.md │ │ │ ├── example_sdl2_sdlrenderer.vcxproj.filters │ │ │ └── Makefile │ │ ├── example_sdl3_opengl3 │ │ │ └── build_win32.bat │ │ ├── example_sdl2_opengl2 │ │ │ ├── build_win32.bat │ │ │ ├── README.md │ │ │ ├── example_sdl2_opengl2.vcxproj.filters │ │ │ └── Makefile │ │ ├── example_sdl2_opengl3 │ │ │ └── build_win32.bat │ │ ├── example_allegro5 │ │ │ ├── imconfig_allegro5.h │ │ │ ├── README.md │ │ │ └── example_allegro5.vcxproj.filters │ │ ├── README.txt │ │ ├── example_win32_directx10 │ │ │ ├── build_win32.bat │ │ │ └── example_win32_directx10.vcxproj.filters │ │ ├── example_win32_directx11 │ │ │ ├── build_win32.bat │ │ │ └── example_win32_directx11.vcxproj.filters │ │ ├── example_sdl2_vulkan │ │ │ ├── build_win32.bat │ │ │ └── example_sdl2_vulkan.vcxproj.filters │ │ ├── example_sdl2_directx11 │ │ │ ├── build_win32.bat │ │ │ └── example_sdl2_directx11.vcxproj.filters │ │ ├── example_win32_directx12 │ │ │ ├── build_win32.bat │ │ │ └── example_win32_directx12.vcxproj.filters │ │ ├── example_glfw_vulkan │ │ │ ├── build_win64.bat │ │ │ ├── build_win32.bat │ │ │ ├── CMakeLists.txt │ │ │ └── example_glfw_vulkan.vcxproj.filters │ │ ├── example_glfw_metal │ │ │ └── Makefile │ │ ├── example_sdl2_metal │ │ │ └── Makefile │ │ ├── example_glut_opengl2 │ │ │ ├── Makefile │ │ │ └── example_glut_opengl2.vcxproj.filters │ │ └── example_emscripten_wgpu │ │ │ └── README.md │ ├── .github │ │ ├── FUNDING.yml │ │ ├── pull_request_template.md │ │ ├── workflows │ │ │ ├── scheduled.yml │ │ │ └── static-analysis.yml │ │ └── issue_template.md │ ├── misc │ │ ├── fonts │ │ │ ├── DroidSans.ttf │ │ │ ├── ProggyTiny.ttf │ │ │ ├── Karla-Regular.ttf │ │ │ ├── ProggyClean.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ └── Cousine-Regular.ttf │ │ ├── debuggers │ │ │ ├── README.txt │ │ │ ├── imgui.gdb │ │ │ ├── imgui.natstepfilter │ │ │ └── imgui.natvis │ │ ├── cpp │ │ │ ├── README.txt │ │ │ └── imgui_stdlib.h │ │ ├── README.txt │ │ ├── single_file │ │ │ └── imgui_single_file.h │ │ └── freetype │ │ │ └── README.md │ ├── backends │ │ ├── vulkan │ │ │ ├── generate_spv.sh │ │ │ ├── glsl_shader.frag │ │ │ └── glsl_shader.vert │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_dx10.h │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_sdlrenderer.h │ │ ├── imgui_impl_wgpu.h │ │ ├── imgui_impl_android.h │ │ ├── imgui_impl_opengl2.h │ │ ├── imgui_impl_allegro5.h │ │ ├── imgui_impl_osx.h │ │ ├── imgui_impl_sdl3.h │ │ └── imgui_impl_sdl2.h │ ├── .gitattributes │ ├── LICENSE.txt │ ├── .editorconfig │ └── .gitignore ├── glfw │ ├── examples │ │ ├── glfw.rc │ │ ├── glfw.icns │ │ └── glfw.ico │ ├── src │ │ ├── glfw3Config.cmake.in │ │ ├── glfw3.pc.in │ │ ├── xkb_unicode.h │ │ ├── null_joystick.h │ │ ├── posix_time.h │ │ ├── posix_thread.h │ │ ├── null_joystick.c │ │ ├── cocoa_joystick.h │ │ ├── null_init.c │ │ ├── win32_joystick.h │ │ └── cocoa_time.c │ ├── docs │ │ ├── footer.html │ │ ├── CODEOWNERS │ │ ├── SUPPORT.md │ │ ├── CMakeLists.txt │ │ ├── header.html │ │ ├── extra.css.map │ │ ├── main.dox │ │ └── DoxygenLayout.xml │ ├── .mailmap │ ├── CMake │ │ ├── modules │ │ │ ├── FindOSMesa.cmake │ │ │ ├── FindEpollShim.cmake │ │ │ ├── FindWaylandProtocols.cmake │ │ │ └── FindXKBCommon.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── x86_64-w64-mingw32.cmake │ │ ├── i686-w64-mingw32-clang.cmake │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ ├── MacOSXBundleInfo.plist.in │ │ └── GenerateMappings.cmake │ ├── LICENSE.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ │ └── getopt.h │ └── tests │ │ └── title.c └── implot │ ├── LICENSE │ └── .github │ └── example_implot.cpp ├── .gitignore ├── robots ├── assets │ ├── README.md │ ├── table.stl │ ├── marble.png │ └── longtable.stl ├── box.in.yaml ├── ground.in.yaml ├── table.in.yaml ├── longtable.in.yaml ├── table.xml ├── ground.xml ├── CMakeLists.txt ├── box.xml └── longtable.xml ├── .gitmodules ├── docker ├── Makefile ├── docker-compose.yml └── entrypoint.sh ├── .github └── workflows │ └── test-standalone │ ├── CMakeLists.txt │ └── main.cpp ├── src ├── config.in.h ├── widgets │ ├── MujocoWidget.h │ ├── Rotation.h │ ├── Visual.h │ ├── XYTheta.h │ ├── Force.h │ ├── Transform.h │ ├── details │ │ ├── ControlAxis.h │ │ ├── InteractiveMarker.h │ │ ├── TransformBase.h │ │ └── InteractiveMarker.cpp │ ├── Point3D.h │ ├── Polygon.h │ ├── Polyhedron.h │ ├── Trajectory.h │ └── Arrow.h ├── mj_configuration.h ├── mj_sim.h └── mj_utils.h ├── cmake ├── CMakeLists.txt └── Config.cmake.in ├── .pre-commit-config.yaml └── LICENSE /ext/ImGuizmo/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .*/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build 3 | compile_commands.json 4 | .cache/ 5 | -------------------------------------------------------------------------------- /ext/pugixml/README.md: -------------------------------------------------------------------------------- 1 | pugixml sources files from release v1.11.4 2 | -------------------------------------------------------------------------------- /robots/assets/README.md: -------------------------------------------------------------------------------- 1 | ### Credits 2 | 3 | - `marble.png`: www.mujoco.org 4 | -------------------------------------------------------------------------------- /robots/box.in.yaml: -------------------------------------------------------------------------------- 1 | xmlModelPath: "@MC_MUJOCO_SHARE_DESTINATION@/object/box.xml" 2 | -------------------------------------------------------------------------------- /ext/imgui/examples/example_android_opengl3/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /robots/ground.in.yaml: -------------------------------------------------------------------------------- 1 | xmlModelPath: "@MC_MUJOCO_SHARE_DESTINATION@/env/ground.xml" 2 | -------------------------------------------------------------------------------- /robots/table.in.yaml: -------------------------------------------------------------------------------- 1 | xmlModelPath: "@MC_MUJOCO_SHARE_DESTINATION@/object/table.xml" 2 | -------------------------------------------------------------------------------- /ext/glfw/examples/glfw.rc: -------------------------------------------------------------------------------- 1 | 2 | GLFW_ICON ICON "glfw.ico" 3 | 4 | -------------------------------------------------------------------------------- /ext/glfw/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /ext/imgui/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://github.com/ocornut/imgui/wiki/Sponsors'] 2 | -------------------------------------------------------------------------------- /robots/longtable.in.yaml: -------------------------------------------------------------------------------- 1 | xmlModelPath: "@MC_MUJOCO_SHARE_DESTINATION@/object/longtable.xml" 2 | -------------------------------------------------------------------------------- /robots/assets/table.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/robots/assets/table.stl -------------------------------------------------------------------------------- /robots/assets/marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/robots/assets/marble.png -------------------------------------------------------------------------------- /ext/glfw/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/glfw/examples/glfw.icns -------------------------------------------------------------------------------- /ext/glfw/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/glfw/examples/glfw.ico -------------------------------------------------------------------------------- /robots/assets/longtable.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/robots/assets/longtable.stl -------------------------------------------------------------------------------- /ext/ImGuizmo/Images/nodeeditor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/ImGuizmo/Images/nodeeditor.jpg -------------------------------------------------------------------------------- /ext/ImGuizmo/bin/ImGuizmoSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/ImGuizmo/bin/ImGuizmoSample.exe -------------------------------------------------------------------------------- /ext/imgui/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/imgui/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /ext/imgui/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/imgui/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /ext/imgui/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/imgui/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /ext/imgui/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/imgui/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /ext/imgui/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/imgui/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ext/imgui/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/imgui/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /ext/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib -------------------------------------------------------------------------------- /ext/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpsingh/mc_mujoco/HEAD/ext/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib -------------------------------------------------------------------------------- /ext/glfw/docs/footer.html: -------------------------------------------------------------------------------- 1 |
2 |3 | Last update on $date for $projectname $projectnumber 4 |
5 | 6 |