This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/python/generic
Dalai Felinto 78d9891dfe mathutils: bugfix for matrix * vector
- terrible typo was making the multiplication to run in an infinite loop.
- Any matrix * vector multiplication would crash Blender.
eg
####
import Mathutils
from Mathutils import *

vec_ray = Vector(0.0, 0.0, 1.0)
tilt_mat = RotationMatrix(0.0, 3, "y")
vec_ray = tilt_mat * vec_ray
####
2009-10-03 21:48:15 +00:00
..
2009-08-15 16:36:25 +00:00
2009-08-14 17:16:16 +00:00
2009-08-10 00:07:34 +00:00
2009-08-10 00:07:34 +00:00
2009-08-10 00:07:34 +00:00
2009-08-10 15:39:11 +00:00
2009-09-16 22:12:23 +00:00
2009-08-10 00:07:34 +00:00
2009-10-03 21:48:15 +00:00
2009-06-30 00:42:17 +00:00
2009-08-15 16:36:25 +00:00
2009-08-10 00:07:34 +00:00
2009-09-08 03:25:00 +00:00
2009-08-10 00:07:34 +00:00