Skip to content

Commit

Permalink
Implement thick layer for stitching line mesh
Browse files Browse the repository at this point in the history
  • Loading branch information
huxingyi committed Feb 13, 2023
1 parent 46fc66f commit 0def638
Show file tree
Hide file tree
Showing 2 changed files with 584 additions and 25 deletions.
2 changes: 1 addition & 1 deletion application/sources/document.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2034,7 +2034,7 @@ void Document::addFromSnapshot(const dust3d::Snapshot& snapshot, enum SnapshotSo
component.combineMode = dust3d::CombineModeFromString(dust3d::String::valueOrEmpty(componentKv.second, "combineMode").c_str());
component.sideClosed = dust3d::String::isTrue(dust3d::String::valueOrEmpty(componentKv.second, "sideClosed"));
component.frontClosed = dust3d::String::isTrue(dust3d::String::valueOrEmpty(componentKv.second, "frontClosed"));
component.sideClosed = dust3d::String::isTrue(dust3d::String::valueOrEmpty(componentKv.second, "sideClosed"));
component.backClosed = dust3d::String::isTrue(dust3d::String::valueOrEmpty(componentKv.second, "backClosed"));
const auto& colorImageIt = componentKv.second.find("colorImageId");
if (colorImageIt != componentKv.second.end()) {
component.colorImageId = dust3d::Uuid(colorImageIt->second);
Expand Down

0 comments on commit 0def638

Please sign in to comment.