Center coordinates of all the vertices

Property definitions

gamnit :: model_dimensions $ Model :: center
	# Center coordinates of all the vertices
	var center = new Point3d[Float]((min.x+max.x)/2.0, (min.y+max.y)/2.0, (min.z+max.z)/2.0) is lazy, writable
lib/gamnit/depth/model_dimensions.nit:25,2--26,107

gamnit :: model_dimensions $ LeafModel :: center
	redef fun center do return mesh.center
lib/gamnit/depth/model_dimensions.nit:65,2--39