Skip to content

Commit

Permalink
Fix incorrect MultiSphereConvexHull rendering (#1579)
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 authored May 3, 2021
1 parent 984a906 commit 3fbc45d
Show file tree
Hide file tree
Showing 28 changed files with 2,761 additions and 35 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

### [DART 6.11.0 (TBD)](https://github.com/dartsim/dart/milestone/64?closed=1)

* Math

* Added `Mesh`, `TriMesh`, and `Icosphere` classes: [#1579](https://github.com/dartsim/dart/pull/1579)

* GUI

* Fixed incorrect MultiSphereConvexHull rendering: [#1579](https://github.com/dartsim/dart/pull/1579)

### [DART 6.10.1 (2021-04-19)](https://github.com/dartsim/dart/milestone/65?closed=1)

Expand Down
1 change: 1 addition & 0 deletions dart/external/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
add_subdirectory(convhull_3d)
add_subdirectory(imgui)
add_subdirectory(ikfast)
add_subdirectory(lodepng)
Expand Down
9 changes: 9 additions & 0 deletions dart/external/convhull_3d/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Search all header and source files
file(GLOB hdrs "*.h")

# Install
install(
FILES ${hdrs}
DESTINATION include/dart/external/convhull_3d
COMPONENT headers
)
Loading

0 comments on commit 3fbc45d

Please sign in to comment.