Revision 8c3df03 by Campbell Barton November 30, 2012, 04:40 (GMT) |
make previous commit work when the camera is locked to the view (in that case use the camera lens, not the viewport lens value). |
Revision c3406db by Campbell Barton November 30, 2012, 04:25 (GMT) |
fix for view-all operator not taking the view-angle into account. |
Revision 5321669 by Brecht Van Lommel November 29, 2012, 19:04 (GMT) |
Fix render from local view 3d viewport not using lamps in render. Fix missing GLSL updates for objects without materials. |
Revision ce3ea89 by Campbell Barton November 29, 2012, 16:36 (GMT) |
remove unneeded mesh->bmesh conversion code that copied BMLoop data in a separate loop (since there is no longer pre-allocated loop data on the new BMLoops). |
Revision 7d62e6d by Sergey Sharybin November 29, 2012, 16:34 (GMT) |
Fix navmesh after recent bmsh api changes. |
Revision 07ccd3e by Campbell Barton November 29, 2012, 16:26 (GMT) |
fix [#33029] Applying modifier leaks memory Thanks for Sergey for finding the bug & patching, This fix works a bit differently. Theres no need to allocate the customdata in the first place - since its written into. So add a flag for vert/edge/face/loop creation functions so they can skip customdata creation. |
Revision f174570 by Brecht Van Lommel November 29, 2012, 16:11 (GMT) |
Fix cycles motion blur + OSL + object texture coordinates issue. |
Revision f23b6be by Campbell Barton November 29, 2012, 14:02 (GMT) |
fix [#33332] UV follow active quads rewrite the script to use bmesh connectivity info. |
Revision fb27a69 by Howard Trickey November 29, 2012, 13:54 (GMT) |
Bevel: partial fix for distortion (bug 33280). Sometimes it is impossible to have same offset from both edges that are on angled faces. The fix here at least doesn't distort the non-beveled part of the model, and looks much better than before on bug example, but is still not perfect. |
Revision 4e981dc by Sergey Sharybin November 29, 2012, 13:24 (GMT) |
Fix #33345: Crash when using bpy.ops.sculpt.brush_stroke It was kind of a regression in behavior in svn rev46862 which made it so blender crashes if stroke is done from the script. It should bring back the behavior back and made it so blender doesn't crash, however it's probably not full fix and some further work is needed to make call of stroke operator usable from the addon. |
Revision 186bdbd by Brecht Van Lommel November 29, 2012, 13:07 (GMT) |
Fix #33344: cycles motion blur was still crashing on CUDA sm 2.0. Solution now is also an optimization, use quaternion nlerp instead of slerp, there's no good reason to use slerp, and nlerp is faster too. |
Revision d387dcd by Daniel Genrich November 29, 2012, 12:22 (GMT) |
Fix compile error with clang. Patch by sambler via irc |
Revision df4e195 by Dalai Felinto November 29, 2012, 10:28 (GMT) |
we need 2.8.8 for cmake on mac - patch by Jens Verwiebe |
Revision 40e75fd by Sergey Sharybin November 29, 2012, 08:22 (GMT) |
Dependencies Builder: disable LINKSTATIC for OIIO It'll likely give issues with system boost libraries in ubuntu/debian due to this distros doesn't like static linking and not building static libs with -fPIC flag. Disabling LINKSTATIC should be quite painless since blender requires the same image libraries as oiio does. |
Revision 149b607 by Campbell Barton November 29, 2012, 05:54 (GMT) |
py/bmesh api: add radial prev/next attributes to the loop |
Revision 5ce13d0 by Mitchell Stokes November 29, 2012, 05:21 (GMT) |
BGE: Fixing the double-click issue for mouse events too. The previous fix only fixed double-click keyboard events. |
Revision 858149d by Campbell Barton November 29, 2012, 05:02 (GMT) |
bmesh py api: add bmesh.update_edit_mode(), there was no way to redraw the 3d view or re-calculate face tessellation from python. add py template for editing meshes in editmode. also remove double call to CTX_wm_region which does a string lookup. |
Revision ede703a by Campbell Barton November 29, 2012, 03:55 (GMT) |
some minor edits - script stub printed resource warning with py3.3 (not closing a file). - bmesh customdata layer access had bad docstring. - float/double conversion warnings in sequencer code (use doubles since result is double) - remove unused var |
Revision c86045d by Campbell Barton November 29, 2012, 03:25 (GMT) |
bmesh py api: use generic checking macros to see if an object if from the same bmesh. - was such a common operation so this saves having exceptions set inline all over the place. |
Revision 078487e by Campbell Barton November 29, 2012, 02:44 (GMT) |
bmesh py api: add BMeshFaceSeq.active attribute- bm.faces.active |
|