Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

7
  • $\begingroup$ did you try making a Freznel affect as a mask? use a dot product between the the direction to the camara and the normal. and then remove the rest with the raycast (aka backface culling). make sure to do the raycast first, capture it, to the Freznel deletion then do the captured raycast deletion. $\endgroup$
    – shmuel
    Commented Oct 10, 2023 at 6:08
  • $\begingroup$ I don't follow the extrusion logic in attempt 1, but I think it's wrong. think about a simple case first: orthogonal view, looking from up, you scale everything on $z$ to 0, extrude edges up, raycast on them. obviously you won't get an outline inside "holes" (in a projection), and concavities pose a problem to shrinkwrapping, but your problem doesn't seem to be caused by either. $\endgroup$ Commented Oct 10, 2023 at 12:47
  • $\begingroup$ @shmuel Wow, Backface Culling? That looks like a really old-fashioned method. I do not mean to sound patronizing but, my intention was to make an outline according to this question; How can I create an outline around an object?. $\endgroup$
    – Obfuscate
    Commented Oct 10, 2023 at 21:44
  • $\begingroup$ Apologies to all for the lack of detail in Attempt 1. In the Extrusion section, I had to offset my tube (either before or after the Extrusion) because my shrinkwrap did not know which edge to shrinkwrap to (try muting Extrude Mesh -0.1m node and using the move tool on Suzanne). Upon flattening my mesh, faces not visible to camera view were reprojected facing away from the camera view. When extruded, these faces would be extruded into a second tube, moving in the opposite direction. I simply picked one half of the tube with a Separate Geometry Node. $\endgroup$
    – Obfuscate
    Commented Oct 10, 2023 at 22:11
  • $\begingroup$ @Markus von Broady I agree mostly with what you're saying. Much of Attempt 1 was completed with Trial and Error. Simply put, the problem with Attempt 1 is that it won't work for every mesh in my opinion. Although, I'm not quite sure what you're suggesting is the main cause for its defectiveness. $\endgroup$
    – Obfuscate
    Commented Oct 10, 2023 at 22:24