Blender Git Commit Log

Git Commits -> Revision 3a370ec

Revision 3a370ec by Sergey Sharybin (master)
December 11, 2013, 10:32 (GMT)
Move curve's boundbox and texspace calculation out of modifier stack

There were several issues with how bounding box and texture space
are calculated:

- This was done at the same time as applying modifiers, meaning if
several objects are sharing the same curve datablock, bounding
box and texture space will be calculated multiple times.

Further, allocating bounding box wasn't safe for threading.

- Bounding box and texture space were evaluated after pre-tessellation
modifiers are applied. This means Curve-level data is actually
depends on object data, and it's really bad because different
objects could have different modifiers and this leads to
conflicts (curve's data depends on object evaluation order)
and doesn't behave in a predictable way.

This commit moves bounding box and texture space evaluation from
modifier stack to own utility functions, just like it's was done
for meshes.

This makes curve objects update thread-safe, but gives some
limitations as well. Namely, with such approach it's not so
clear how to preserve the same behavior of texture space:
before this change texture space and bounding box would match
beveled curve as accurate as possible.

Old behavior was nice for quick texturing -- in most cases you
didn't need to modify texture space at all. But texture space
was depending on render/preview settings which could easily lead
to situations, when final result would be far different from
preview one.

Now we're using CV points coordinates and their radius to approximate
the bounding box. This doesn't give the same exact texture space,
but it helps a lot keeping texture space in a nice predictable way.

We could make approximation smarter in the future, but fir now
added operator to match texture space to fully tessellated curve
called "Match Texture Space".

Review link:

https://codereview.appspot.com/15410043/

Brief description:

http://wiki.blender.org/index.php/User:Nazg-gul/GSoC-2013/Results#Curve_Texture_Space

Commit Details:

Full Hash: 3a370ec6ecb7c481ff7a9f0d5108367c903a29c1
Parent Commit: aeee711
Lines Changed: +116, -26

10 Modified Paths:

/release/scripts/startup/bl_ui/properties_data_curve.py (+2, -0) (Diff)
/source/blender/blenkernel/BKE_curve.h (+2, -2) (Diff)
/source/blender/blenkernel/intern/curve.c (+40, -10) (Diff)
/source/blender/blenkernel/intern/displist.c (+0, -12) (Diff)
/source/blender/blenkernel/intern/object.c (+5, -0) (Diff)
/source/blender/blenloader/intern/readfile.c (+0, -1) (Diff)
/source/blender/editors/curve/curve_intern.h (+2, -0) (Diff)
/source/blender/editors/curve/curve_ops.c (+2, -0) (Diff)
/source/blender/editors/curve/editcurve.c (+63, -0) (Diff)
/source/blender/makesdna/DNA_curve_types.h (+0, -1) (Diff)
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021