Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2018-09-19 11:32:58 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-09-19 11:32:58 +0300
commit2be5621be818d267a5edc2d16be5d320e480dfad (patch)
tree0cfeeeb90c6d12fa718617c9930b7acd28168618
parenteab3ca7348051142169e519b7ba77b641c1a17f1 (diff)
Fix T56838: Quick smoke failing with Python error.
Again the change to @ operator for matrix multiplication...
-rw-r--r--release/scripts/startup/bl_operators/object_quick_effects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/object_quick_effects.py b/release/scripts/startup/bl_operators/object_quick_effects.py
index d0b0fccf65e..e3c8b2c0f04 100644
--- a/release/scripts/startup/bl_operators/object_quick_effects.py
+++ b/release/scripts/startup/bl_operators/object_quick_effects.py
@@ -287,7 +287,7 @@ class QuickExplode(Operator):
def obj_bb_minmax(obj, min_co, max_co):
for i in range(0, 8):
- bb_vec = obj.matrix_world * Vector(obj.bound_box[i])
+ bb_vec = obj.matrix_world @ Vector(obj.bound_box[i])
min_co[0] = min(bb_vec[0], min_co[0])
min_co[1] = min(bb_vec[1], min_co[1])