Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

MarioLiebisch
Copy link

@MarioLiebisch MarioLiebisch commented Jul 23, 2022

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:
Triangulation (regular)

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:
Triangulation (offset +1)

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!

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).
@fire
Copy link
Collaborator

fire commented Jul 23, 2022

I think instead of +1 you can use something visual that represent flipping. The feature is good though.

@MarioLiebisch
Copy link
Author

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.

Comment on lines +15 to +17
var v = verts[0]
verts.remove_at(0)
verts.push_back(v)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
var v = verts[0]
verts.remove_at(0)
verts.push_back(v)
verts.push_back(verts.pop_front())

Copy link
Author

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.👍

@jarneson
Copy link
Owner

jarneson commented Jul 27, 2022

additionally, just having a +1 button doesn't really work for anything with more edges than a quad (or maybe even rectangle?), since this uses ear clipping to attempt to triangulate somewhat reasonably, and doesn't work particularly well for multiselect (although the current algorithm doesn't do a great job to begin with!)

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.

@MarioLiebisch
Copy link
Author

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.

@jarneson
Copy link
Owner

If you are interested in chasing edge creation, sfme in euler.gd should work out of the box: https://github.com/jarneson/godot-ply/blob/main/addons/ply/resources/euler.gd#L61

@fire
Copy link
Collaborator

fire commented Aug 4, 2023

This doesn't look like it is complete yet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants