removed the now unneeded resize4d operation for instant 2.43 incompatability. :/

This commit is contained in:
2006-07-26 12:54:54 +00:00
parent 1df2871f2f
commit 0740e4ab1c
3 changed files with 4 additions and 20 deletions

View File

@@ -1046,10 +1046,7 @@ def pointInsideMesh(ob, pt):
obImvMat = Blender.Mathutils.Matrix(ob.matrixWorld)
obImvMat.invert()
pt.resize4D()
obSpacePt = pt* obImvMat
pt.resize3D()
obSpacePt.resize3D()
obSpacePt = pt*obImvMat
ray = Vector(0,0,-1)
me= ob.getData(mesh=1)