There is a fix pending for importance weights: blender/blender#128757
Unfortunately it is still under review :/
drawing.add_strokes()
drawing.strokes
doesn't have length of 0
Now I would like to focus on updating the Minimize Stretch operator so it uses SLIM behind the scenes. Thus no time for updating documentation.
Great news! Thank you all for testing and reviewing this PR :)
After a closer look at the code: it turns out Eigen excepts a column-major format of input. It means that the given arrays are initialized in the following layout:
`[ all x coordinates, 0 .. n…
Can we finish this review in the nearest feature? I think there is not much work left here.
Using a linearized form is safer because we have full control over the data layout. The proper layout is essential when the arrays are passed to initialize Eigen Map objects.