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.
how to delete points not impacting the shape of an object
1993 2 1-
- john-wright
- Member
- 7 posts
- Joined: Jan. 2022
- Offline
-
- tamte
- Member
- 9252 posts
- Joined: July 2007
- Offline
-
- GOgraphR
- 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