Mesh From Points

Hi,

I’m trying to make a closed ring of mesh but there is one face missing. Any idea why that is happening and how to fix it? thanks in advance.


Open Mesh Circle.gh (8.1 KB)

The last component you are using is from a plugin I don’t have…

That component is probably trying to build a mesh with a grid-like topology.
Usually in grids you have X cells in a direction, but X+1 points for the same directions.
(the same thing as, we having 5 fingers per hand, but only 4 “valleys” in between the fingers…)
But in closed-loop topology like yours, a “ring”, cells count is equal to the points count. Here’s your need for an additional cell.

You can fix this by repeating the first point on each of your “Divide” point list.
So, if you have points: 0-1-2-3-4 , you want to have 6 points before going to “FromPoints” component: 0-1-2-3-4-0 …
You can use “Repeat data” component
2024-07-02 12_39_18-Window

so you can create a last “cell” between 4 and 0, between pinky and thumb.

1 Like

Yes, this fixed my problem. Very well explained. Thanks a lot!