Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9b74235
Add start of dynamics code
zfergus May 31, 2024
75d0588
Add comments to OrthogonalityPotential::hessian
zfergus May 31, 2024
8b3a1b2
Add J matrix to AffineBody class
zfergus Jun 6, 2024
1e31d41
Merge branch 'main' into dynamics
zfergus Nov 10, 2024
5c73e27
Fix comment
zfergus Nov 11, 2024
73c28ce
Merge branch 'main' into dynamics
zfergus Jun 8, 2025
47c282b
[WIP] Implement rigid body dynamics framework
zfergus Jun 13, 2025
caf4d50
Fix rotation_vector_to_matrix derivatives
zfergus Jun 14, 2025
59edd85
Test RigidBody class
zfergus Jun 17, 2025
5cbe3d4
Test InertialTerm
zfergus Jun 18, 2025
dbad1ba
Add density parameter to mass calculations; store R0 in RB
zfergus Jun 18, 2025
5d7512a
Add (empty) simulator loop
zfergus Jun 18, 2025
0107073
Move body forces into separate class
zfergus Jun 21, 2025
e118277
Merge branch 'main' into dynamics
zfergus Aug 18, 2025
6987872
Remove duplicate cross_product_matrix function
zfergus Aug 18, 2025
3bb8029
Refactor error handling in matrix projection functions to use log_and…
zfergus Aug 18, 2025
f34250b
Remove cross_product_matrix function from pose.cpp
zfergus Aug 18, 2025
42510aa
Fix CMake option syntax for CCD Query IO, filib, libigl, and scalable…
zfergus Aug 18, 2025
e560de5
Initialize integral array in compute_mass_properties_3D with empty br…
zfergus Aug 18, 2025
3a9b326
Remove unicode from test names for Windows CI
zfergus Aug 18, 2025
3491217
Remove unused K_dKj_plus_K_dKj_T
zfergus Aug 19, 2025
e10542a
Add RigidBody class bindings to expose mass and inertia properties.
zfergus Aug 20, 2025
ea38e5d
Fix broad phase benchmark
zfergus Aug 24, 2025
f27fbe8
Update GIT_TAG for ipc_toolkit_tests_data and modify expected output …
zfergus Aug 24, 2025
7f75e25
Refactor broad phase collision detection methods
zfergus Aug 24, 2025
0c00276
Refactor nonlinear CCD methods to use NonlinearCCD class and simplify…
zfergus Aug 28, 2025
0f3bc00
Add RigidCandidates class for managing collision candidates and imple…
zfergus Aug 28, 2025
7470786
Merge branch 'main' into dynamics
zfergus Sep 1, 2025
a5674a6
Merge branch 'main' into dynamics
zfergus Sep 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ target_link_libraries(ipc_toolkit PRIVATE simple_bvh::simple_bvh)
include(spdlog)
target_link_libraries(ipc_toolkit PUBLIC spdlog::spdlog)

# TinyGLTF
include(tinygltf)
target_link_libraries(ipc_toolkit PRIVATE tinygltf::tinygltf)

# CCD
if(IPC_TOOLKIT_WITH_INEXACT_CCD)
# Etienne Vouga's CTCD Library for the floating point root finding algorithm
Expand Down
21 changes: 21 additions & 0 deletions cmake/recipes/tinygltf.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# TinyGLTF (https://github.com/syoyo/tinygltf)
# License: MIT
if(TARGET tinygltf::tinygltf)
return()
endif()

message(STATUS "Third-party: creating target 'tinygltf::tinygltf'")

include(CPM)
CPMAddPackage(
URI "gh:syoyo/[email protected]"
DOWNLOAD_ONLY TRUE
)

add_library(tinygltf)
add_library(tinygltf::tinygltf ALIAS tinygltf)
target_sources(tinygltf PRIVATE ${tinygltf_SOURCE_DIR}/tiny_gltf.cc)
target_include_directories(tinygltf INTERFACE
$<BUILD_INTERFACE:${tinygltf_SOURCE_DIR}>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
)
Loading
Loading