You might consider vertex color support at-least for part color and at-most for face color (/face loops).
Yeah, kindof my guiding principle for what features I want it to support is "support whatever GLTF supports", and GLTF has something called "COLOR_0" which is basically vertex colors. So, yeah. It's on the roadmap. How high up the priority list? No clue at this point. Lol. (Right now I'm tweaking the OpenGL 3d viewer built into it, and I think probably one of the next things I'll tackle is per-vertex normals. But yeah.) If folks want per-face colors, I'll probably just make users split vertices as necessary. Like, if they have something like the following:
*
/ \
/ \
/ Red \
/ \
*---------*
\ Blue /
\ /
\ /
\ /
*
And they want the whole top face to be red and the whole bottom face to be blue (or, say, if they want a hard crease normals-wise at the junction there rather than a smooth transition), they'll just have to have 6 separate vertices (though some of them will share the same location in space.) If that makes any sense.
I’m not sure if ‘modelgen’ is a good name, it sounds AI-related.
Yeah, that's good feedback to have, and you're not wrong. I don't know. I haven't thought of a better name yet. Heh.
It has what I've heard called a "Swiss Army knife" CLI. If you think of how Git works, for instance, where you have "git log", "git commit", "git revert", "git show", "git diff", etc, that's a "Swiss Army knife" pattern. So I want the executable to have an easy short version. I was thinking "mg" for "Modelgen". (And it would have "mg run" for running a script and "mg shell" for an interactive REPL and "mg help" for usage information (all three of these preceding examples already exist and work) and "mg transpile" for transpiling a script to Go (when transpilation to Go is supported in the future) etc.) So I kindof want that to be a consideration of the name. If I renamed it to "Enmodelerator" or whatever, it'd be harder to come up with a short version for that. Heh.
Anyway! I'm rambling. But I do want to avoid any appearance of it being connected to anything GenAI. (And I do specifically intend for it never to include any LLM-generated code or anything.)