Replies: 1 comment 3 replies
-
Hello, |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Given
GEO::Mesh& destination
andGEO::Mesh& source
, I would like add all vertices, faces etc. fromsource
intodestination
. There may already have existing vertices, faces etc. in thedestination
. I would like to do this without any consideration for intersections for example. Is there a simple way to achieve this?Edit x 2: This is what I came up with - works for me, but only minimally tested. The
if (dst_attribute_store == nullptr)
branch is likely never used nor works as is.(from https://github.com/tksuoran/erhe/blob/cdda5d8b8a0a0069e20861c66394a44ac03941a6/src/erhe/geometry/erhe_geometry/geometry.cpp#L616-L641)
Beta Was this translation helpful? Give feedback.
All reactions