[Bf-python] BUG PYTHON identified! Please fix it...

Manuel Bastioni manuelbastioni at tin.it
Sat May 8 02:05:44 CEST 2004


I've tested using win 2000 and XP, with
the official Blender 233.

This simple routine, called only one time,
increase the RAM used by system of 105 MB !!!!
And the RAM is still used even if I close
the main Blender win. I must close the
dos window to have free memory.


import Blender
from Blender import NMesh
try:
	object = Blender.Object.GetSelected()[0]
	mesh = object.getData()
except:
	pass

def benchmark(name):
	global mesh
	a = mesh.getVertsFromGroup(name)
	print id(a)
	
for i in range(1000):
	benchmark("All")





More information about the Bf-python mailing list