how to delete points not impacting the shape of an object

   1994   2   1
User Avatar
Member
7 posts
Joined: Jan. 2022
Offline
Hello.
I am making a tool and I need to blast out the points circled in red. The shape is made procedurally, and the amount of points will vary. how should I delete these points? thanks.

Attachments:
pointReduction.png (268.9 KB)

User Avatar
Member
9252 posts
Joined: July 2007
Offline
you can try Facet SOP/Remove Inline Points and play with distance
Tomas Slancik
CG Supervisor
Framestore, NY
User Avatar
Member
72 posts
Joined: Oct. 2018
Offline
john-wright
Hello.
how should I delete these points? thanks.

Hi John !

Algorithmically you would take the vector from one point to the next connected point, and you would delete any point, that can be described by adding this vector to the start point. Thats what "inline point" means. The actual mathematical term is colinearity.

Basically, if the Equation Start+(End-Start)*l=TestPoint has a solution in l then this point can be deleted.

Here's the mathematical backgrund on this topic.
Coplanarity [en.wikipedia.org] and Collinearity [en.wikipedia.org]
  • Quick Links