-
Notifications
You must be signed in to change notification settings - Fork 6
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
Maybe rename "Vertex" into "Corner" #12
Comments
(First, let me say that the C++ tutorial is great! :) To help people better understand the representation, I wouldn't hesitate to put the figure describing attributes from the C++ tutorial also into the C API reference, where The impression I got from looking at the various SDKs was that they are all slightly different, so you still have to look at the schema to see what they actually mean, and point/vertex/face/mesh seem good to me. I don't have experience with Maya/3DS, but Blender (as far as UI goes) is confused: there are "vertex groups/weights" (OFX point attributes), but also "vertex colors / vertex painting" (which are actually "loop colors", or OFX vertex attributes). In the "Data Transfer" modifier, there are "Vertex Data" and "Face Corner Data" sections, where "vertex groups" and "vertex colors" live, respectively. (Perhaps this blurring of points/vertices is intentional, to make it easier for the artists.) "Elements" sounds confusing to me, I'm not sure if it refers to faces or face-corners. "Corners" is fine (vertex/corner/face/mesh). I still like "Vertex" (point/vertex/face/mesh) best, the other options don't seem like a clear win to me. On the topic of naming, one thing that might be a bit confusing is Open Mesh Effect naming itself. "OFX" refers to the original OpenFX spec, but it can also refer to this project, as in "OFX mesh effect". The existing plugins are called "Mfx___"; perhaps using "MFX" more pervasively to refer to "OFX mesh effect" / "Open Mesh Effect" would be better branding? It's not direct abbreviation, but "OME" looks silly to me :) |
Good call for adding the image to the C doc as well, I just did it. :) Yes, Blender confuses vertices and loops because I think they designed the notion of "loop" only as an internal name at first and did not want to expose it to the user (because it means nothing). That's why I think we should get away from this term, it has been used too much to mean different things. I don't like "element" neither, whereas "corner" really mean what it is. Do you mean replacing |
OpenFX uses Regarding vertices vs. corners, it's your call - both work for me :) |
Little heads up: I am planning on doing this renaming of "vertex" into "corner" and "Open Mesh Effect" into "OpenMfx" soon! |
The (breaking) renaming is available for preview in the |
Renaming is ready to be merged, awaiting for plugins to migrate (MfxVCG ok, MfxVTK PRed). |
Thanks for the pull request, MfxVTK should be ready as well. I think the latest release of MfxVTK is a bit behind master, I should make a new release. If you're going to implement the renaming into the new Blender 2.93 host, I think I'll wait for that and then test everything to make sure it works, update docs and make a new release. BTW, glad to see Mfx moving again! :) |
Here we are, thanks for merging my PR on MfxVTK, now MfxVCG switched to the renamed version as well as this repo and OpenMfxForBlender. The last release is based on 2.93 LTS. I have also updated the whole documentation. @tkarabela happy to see you're still interested! I just sent you an email btw. |
The terms point/vertex/face were originally chosen according to Houdini's naming convention, and it also matches Pixar's USD. But "vertex" is misleading to many people because in some softwares it may have a different meaning. In particular, in Blender, Maya and 3DS Max it means what we call "point", making everything a bit harder to follow.
A good candidate so far seems to be "Corner", as in "face corner", which already feels like the most natural way to explain what "vertices" are with respect to "points". Other existing names are "Loops" (quite unique to Blender, and a bit ill-named imho even though I understand why it is so) or "Elements" (as in "element buffer" using in graphic APIs, I find it more abstract).
Memo of things to change in case of such a renaming (it'll touch a lot of things):
External input and thoughs are welcome here!
(Thanks @tkarabela for investingating about other APIs btw)
The text was updated successfully, but these errors were encountered: