-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow triangulation starting at 2nd vertex #65
base: main
Are you sure you want to change the base?
Conversation
While the difference is neglectable in many cases, this is most notable when triangulation quads, as this allows you to switch the diagonal you want to create (from first to third vertex or from second to fourth).
I think instead of +1 you can use something visual that represent flipping. The feature is good though. |
Yep, couldn't come up with something creative, though. Maybe mirroring the original icon? I'm not sure. Especially considering it wouldn't always just mirror the splitting. |
var v = verts[0] | ||
verts.remove_at(0) | ||
verts.push_back(v) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var v = verts[0] | |
verts.remove_at(0) | |
verts.push_back(v) | |
verts.push_back(verts.pop_front()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, true. Thought there wouldn't be a pop_front()
, but guess I remembered that one wrong.👍
additionally, just having a i wonder if a better feature is to just have an edge cut tool -- select two verts and add an edge between them if they lie on the same face. |
Yeah, I also thought about removing the button and making it a shortcut (like holding Ctrl), but splitting edges might indeed be the way more obvious and useful addition. |
If you are interested in chasing edge creation, |
This doesn't look like it is complete yet. |
While the difference is neglectable in many cases, this is most noticeable when triangulating quads, as this allows you to switch the diagonal you want to create (from first to third vertex or from second to fourth).
By default, when triangulating quads, you'd always get this diagonal:

However, in some cases you might prefer to triangulate in the other direction, e.g. to block out some specific diagonal/geometry.
To achieve this, the new, smaller

+1
button will essentially offset the triangulation by 1, moving the first vertex per face to the end:There might be a better way to do this – or maybe it's even included and I haven't found it yet, but I wanted to try this to block out a test level (or even more). Let me know what you think or if I indeed missed something obvious!