GSoC 2019: Custom Bevel Profiles

I just found that bug yesterday too! It looks like the profile orientation regularization pass doesn’t properly travel in both directions if it hits an impassable vertex first. This happens within a single edge on a cube too because it doesn’t travel beyond the cube corner (no best choice of which way to go). I’ll look into this soon.

First of all, there’s no obvious way to turn the bevel weight into an absolute orientation, it could only be used as an “invert whichever orientation was chosen by default.” Also, if the bevel weight were used for this it couldn’t be used for the offset width!

That leaves a couple options:

  1. Add a new edge tag used for just this, “Bevel Profile Orientation” or something.
  2. Add a “reverse” button to the profile widget and require the user to do multiple bevels to get different orientations.

Right now I’m leaning toward the second option, especially in the short term.

I’m thinking of a couple heuristics that could be used to determine a common orientation for a set of continuous edge loops -

  1. for n edge loops being beveled we could isolate the first n end vertices that are closest together - that would work for long edge loops such as pipes etc. but wouldn’t work for short edge loops
  2. select start vertices that start from the same ngon
  3. select end vertices that lie on the same edge ring
    bevel_edgering
  4. select start vertices by edge loop start/end vector colinearity (pictured is a case where other 3 methods would fail)

For other/mixed cases it gets more complex. Maybe use two methods, one for main detection and one for fallback ? or use vertex number ? but then user control over this is quite limited so…

@HooglyBoogly @Hadriscus @pablovazquez @jacqueslucke

P#2

Object selection:

The user selects an objects, edges, or a group of vertices using either;

  1. Cursor selection.
  2. Mask. (This could be considered redundant, yet could provide a vertex paint option.)

Add bevel modifier:

  1. The user adds a bevel modifier to the selected objects, edges, or group of vertices.

Assign bevel profile:

  1. The user assigns a bevel profile (a curve).

Adjust bevel profile and orientation:

  1. The user adjusts the bevel profile (a curve) and the bevel orientation.

Vertex distribution:
(Vertex weight paint: Strength = Vertex distribution)

  1. By default the vertex distribution is equally distributed along the bevel profile (a curve) using a vertex weight paint layer. (Toggled: Off)

  2. Unless the user selects custom distribution. (Toggled: On)

Custom distribution:

If the user selects a custom distribution, the system enables the user to edit;

  1. The preassigned IDs/colors (cryptomatte) for vertex distribution.
    The user can reassign IDs/colors (cryptomatte) to a selection of objects, edges, or group of vertices within the object selection, thus linking them. This can be used to create distribution groups/ranges.
    (Assigned vertex ID = Red, Assigned bevel profile: Curve: point = Red)

  2. The vertex weight paint layer strength (along the assigned bevel profile) for the vertex distribution.
    The user can adjust the vertex weight paint strength for each bevel profile ID/color (cryptomatte) and/or distribution group/range.

The this gives the user the following options;

  1. Object selection.
  2. Bevel profile.
  3. Vertex distribution.
  • Equal distribution; based on preassigned bevel profile IDs/colors (cryptomatte) and corresponding vertex weight paint strength.

    OR

  • Custom distribution; based on user assigned/edited bevel profile IDs/colors (cryptomatte) and corresponding vertex weight paint strength.

Other options:

  1. Apply. (Applies the mesh changes to the mesh and removes the modifier.)
  2. Save. (Could create a modifier preset (asset), brush, and/or maps for exporting, etc.)
  • Modifier settings
  • Maps (IDs/colors (cryptomatte), vertex weight paint…)

A node based version could be useful.

Imagine painting a custom bevel profile with the ability to create/adjust the vertex distribution.

Such methods could also be used for displacement, and boolean operations. I have other and/or more ideas for such.

The algorithm I use to solve this problem is here.

Here’s what it does:

  1. Visit any beveled edge that hasn’t been visited yet.
  2. Travel down the edge in each direction, marking consistent orientations, picking the next edge by which other beveled edge is most parallel.
  3. Stop when there is no next beveled edge to travel down or when there is ambiguity in the next edge (The best angle to the next edge isn’t better than the second best angle by at least 30 degrees).

That’s probably a bit confusing. I can make a diagram if it helps. The idea is that all of the continuous paths will be found because all of the edges will have been visited, and the best paths will be chosen because of the “angle to next edge” metric I mentioned.

1 Like

Thanks for the thoughts. I have to say though, I’m not really sure what problem you’re trying to solve with the custom distribution of points along the profile? I can’t really think of a situation where that would be helpful. I think people would want to sample points on the curved sections of the profile, but not necessarily on the straight section. That will be my goal for the end of the summer. If people really want points in specific locations it’s not very hard to add them manually.

Just so you know the scope of this project is not even close to redefining the way modifiers are added and applied, but even then, I don’t think what you described is different than the current process.

@HooglyBoogly @Hadriscus @pablovazquez @jacqueslucke

P#3

Correct. The general the process isn’t very different, yet the method and level of control is. The method I described would give the user more control of the bevel profile’s topology or vertex distribution.

Using such a method could improve the workflow in the following ways;

  1. Easy of use.
  2. Time of implementation (quicker prototyping).
  3. Flexibility (customization).
  • Better control of bevel profile detail (topology).
  1. Less destructive (depending on implementation).
  2. Possibly fewer edits (undo/redo).

Example:

The user selects an area and adds a bevel modifier. (The user doesn’t apply the bevel.) Later the user decides to add a complex pattern to a curved area within the bevel profile.

Current method:

  • Select area.
  • Add bevel modifier.
  • Select bevel profile: Curve. (Custom)
    (Vertex distribution is automatically equally distributed in the selected area.)

An issue arises if there isn’t enough geometry in the curved area of the bevel profile because of the modifier’s automatic equal distribution.

This can also distribute unwanted detail in other areas of the bevel profile.

Possible solutions:

  1. The user could remove the modifer. Then, create a new selection and bevel profile (being a part or section of the original bevel profile) for that select. Then, create another selection and bevel profile (being a part or section of the original bevel profile) for that select. And so forth, as a way to control the distribution. … (This can lead to other issues, such as inaccuracies.)

  2. The user could apply the modifier. Then, select the unwanted vertices and try to remove them. Then, try to add detail were needed. … (Can be considered a destructive workflow.)

Suggested method:

  1. The user selects custom distribution. Then, reassign the bevel profile IDs/colors (cryptomatte) and/or the selected object IDs/colors (cryptomatte) for better accuracy. Or, the user could adjust the vertex weight paint strength with possibly a little less accuracy. …

As a side note: Doing such with displacement nodes would be very useful.


Dynamic Displacement Topology:

  • Painted or generated node map > Displacement value
    (Controls the amount of displacement.)

  • Painted or generated node map >Vertex distribution IDs
    (Controls the ID assignment for the vertex distribution.)

  • Painted or generated node map > Vertex distribution
    (Controls the vertex distribution.)

Imagine controlling the vertex distribution density of a mesh via a vertex weight paint of a height map and with camera depth. (Dynamic depth of view)

Hmm… Adding a sub division node using this method would be very useful.


1 Like

Problem of second option is that edges group don’t exist.
When vertex groups are used, inner edges may be taken into account. If user don’t want them, he has to use Edge Bevel Weight but that weight if tagging edges as bevel edges for all modifiers.
A solution could be to make modifier taking both into account.
Edge Bevel Weight for weight and Vertex Groups or Face Maps (new feature, not really used in 2.8) to restrain some bevel edges to some modifiers.

1 Like

Hi everyone! I wanted to give an update on my thinking about creating the vertex meshes. I made some ideas last week, but over the weekend I wanted to try out some of my ideas manually to see if they actually worked. I used the corner of a cube as a simple situation, but keep in mind that the right method needs to work for all >3-way intersections.

The Vertex Mesh Problem


The best method should work in all three situations. The left is a simple profile with an overhang, the middle is a smooth “non-custom” profile, and the right is a typical use case that I’ve imagined.

Triangulated Fill


For this method I just filled the hole with F and then used the “beauty” triangulate option and converted triangles to quads. It works pretty well for the left, but not so well for the other two more complicated profiles.

Averaged Profile Rings


One idea I had is to reuse the profile for each successive “ring” of vertices. You can see the start of the method on the right. It works great for profiles that don’t have any overhang and evenly spaced points, but it didin’t work at all for the left example. I saw this method as the next logical improvement to the smoothed grid fill option, but I think I’m going to have to abandon this idea unless I come up with a way to improve it.

Smoothed Grid Fill


Here I used a grid fill to create the vertex mesh and then smoothed out the vertices afterward. This solution works ok in most situations, but it doesn’t look great, and it doesn’t emulate the real world at all. This solution is very close to what I have right now, although I need to fix some bugs before it starts to look like this. But it’s definitely the quickest to implement.

Boolean


The unlikely victor for me was using boolean intersections with the corner profiles. It’s predictable, and it mirrors the real world, at least to some extent. It’s very finicky though, as anyone who’s used the boolean modifier knows. These small issues with Blender’s boolean operations might make it difficult to implement and frustrating to use.

Conclusion


So in my opinion it comes down to two options:

  1. Improving the grid fill: Close to finished already, but not close to the real world, and doesn’t work well with overhangs.
  2. Implementing Boolean intersections: Much more of an unknown in terms of development, sometimes problematic, and produces islands with overhanging profiles, probably much slower, but is probably the better looking option.

Thoughts?

10 Likes

the boolean version was actually a request in another bevel thread from someone.
So it would be nice to have it as an option!
But what’s the WIP image you posted in your weekly report thread?
Is that the grid version? Because that looked very good and imho (something like that) should be the default.

But for the extreme case you have above as an example the grid looks erroneous.

2 Likes

Yes, that was the grid option. I’m glad to hear you think it looked good, I was a bit worried people would find that too weird.

I agree with you that an option would be the ideal solution! I guess I can try to finish up the grid option and then see if I have enough time to add a boolean option too.

3 Likes

this project is starting to get interesting evolutions…
if you can solve the problems that emerge in the corners … the Magic world of OZ will appear.

You really made me curious, I can’t wait to see what solutions your mind will take. it’s fascinating.

if it is not too complicated and if you have already “approached both methods” … well, having both options obviously is the best thing to do :yum:

2 Likes

Hi. I agree that making an option to switch between multiple methods would be the best way to go. Also, the boolean method would be great as one of the options: it would sort of be consistent with how the 2-edge case is handled.

I also want to throw another method out there. If you end up with making an option that chooses from multiple methods, this could be thrown in to it :slight_smile:

Cut-off method
Icosphere corner:
IcoBev
Tetrahedron corner (a sharper example):


Cube corner:
In this case, the ‘center’ face has zero area; it would be collapsed.
BevelCutoff
Wacky example:
Here, the center face is not flat.
Wackybev

Implementation: create the ‘center’ face. Fill each edge of it with the bevel of an edge, creating ‘profile’ faces. Position verts of the center face so that:

  • All the profile face are flat
  • the center face is exactly deep enough that a zero profile would not intersect it

Just an idea :slight_smile:

3 Likes

first time testing this branch.

this is a really cool development, i can imagine this in a few version combined with modifier nodes masking and combining different bevels, this is going to be a really good tool to have :+1::+1::+1:

2 Likes

just played with the build a bit - good progress, curious how you end up treating the orientation and vertex mesh problems.

Just wondering if there would be an option to make the profile symetrical - would that help in creating a cleaner vertex mesh?

another thing I noticed and wanted to ask if that is planned - assume you have a 3x3 plane, and put the center quad into a vertex group. Now if you add a bevel modifier to that with said vertex group - the profile does nothing as the bevel shape is flat. Would’t it make sense to introduce some ‘depth’ or ‘scale’ value to push things in/out? That would allow for some very cheap panel like effects :wink:

2 Likes

Yes I also wanted to ask if you could make an option for a symmetrical profile. So the user would only need to draw one side and it would get mirrored. I think that symmetrical bevels are a common use case. But it is hard to place the points so exactly.

3 Likes

What about horizontally flipping the profile editor?
BevDirection
It’s currently the left one, but for some reason I prefer the right :upside_down_face:

8 Likes

I like the right also. I’ve worked for a lot of architects matching their trim selections, and the manufacturers usually draw trim profiles this way. The flat side is almost always on the left or bottom of the illustration.

1 Like

I agree. Grid method and Boolean are both useful.
I don’t see Islands as a problem. Remesh modifier is able to ignore Isolated parts.
There could be ability to keep only main island.

It is obvious that Triangulated fill gives an ugly result. But why did not you try a method with N-gons ?

1 Like

This is a great idea! I actually think by the end of the summer I’d like to finish both the “grid fill” option and this method. It’s not quite as good as the boolean method but it shouldn’t take nearly as long to code.

There’s still amount of stuff left to add, and I don’t want to spend the rest of the summer implementing another VMesh type and leave more important things unfinished.

I’ve been considering this for a while but I hadn’t reached a point where it would be useful. I guess it would enable yet another vertex mesh method where the lines would continue and meet in the middle. So I’m not sure I’m going to prioritize it but I’ll keep this in mind. Although if I ended up making the boolean method I don’t think this would

You have a good point that I could also just add a symmetrical feature to the profile widget for drawing-- it doesn’t have to come with a vertex mesh method too. That’s much more doable.

The triangulated fill is just a triangulated Ngon. So they’re actually the same, although I didn’t use smooth shading.

1 Like

There seems to be a fair amount of support for this, so sure! I did it the other way because that’s how the curve widget works, but profiles are different! And I want to build this with common use cases in mind (as much as possible).

1 Like