-
Notifications
You must be signed in to change notification settings - Fork 665
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added read/write support of OFF files to vdb_tool (#1971)
* added read/write support of OFF files to vdb_tool Signed-off-by: Ken Museth <[email protected]> * added pendingchanges/vdb_tool.txt Signed-off-by: Ken Museth <[email protected]> * added patch from Jonathan S Signed-off-by: Ken Museth <[email protected]> * minor cleanup Signed-off-by: Ken Museth <[email protected]> * addressed review comments Signed-off-by: Ken Museth <[email protected]> * before major improvements to readPLY Signed-off-by: Ken Museth <[email protected]> * cleanup Signed-off-by: Ken Museth <[email protected]> * removed whitespace Signed-off-by: Ken Museth <[email protected]> * added nanovdb::vdb_tool::swapBytes Signed-off-by: Ken Museth <[email protected]> * added more documentation Signed-off-by: Ken Museth <[email protected]> * patch by Jonathan S to fix CI Signed-off-by: Ken Museth <[email protected]> * Fix gtest install for rpm. not deb Signed-off-by: Jonathan Swartz <[email protected]> * Building gtest from source; newer version required than available on distro Signed-off-by: Jonathan Swartz <[email protected]> * permissions fix Signed-off-by: Jonathan Swartz <[email protected]> * Attempting to fix doxygen node version issue Missing iomanip include in TestNanoVDB Signed-off-by: Jonathan Swartz <[email protected]> * Bump container versions attempt to fix doxygen test Signed-off-by: Jonathan Swartz <[email protected]> * install_latex fix Signed-off-by: Jonathan Swartz <[email protected]> * added ascii option to Geometry::writePLY Signed-off-by: Ken Museth <[email protected]> * fixing issue introduced in the previous commit Signed-off-by: Ken Museth <[email protected]> --------- Signed-off-by: Ken Museth <[email protected]> Signed-off-by: Jonathan Swartz <[email protected]> Co-authored-by: Jonathan Swartz <[email protected]>
- Loading branch information
Showing
15 changed files
with
385 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -ex | ||
|
||
GTEST_VERSION="$1" | ||
|
||
|
||
git clone https://github.com/google/googletest.git -b v${GTEST_VERSION} | ||
cd googletest | ||
mkdir build | ||
cd build | ||
cmake .. | ||
|
||
make -j$(nproc) | ||
|
||
sudo make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.