
function prov(sizeX, sizeY, sizeZ, material)
	if material == nil then material = 1 end
	local func = function(x, y, z)
		return material
	end
	return pcons.makeProvider(func, sizeX, sizeY, sizeZ, 1, 0, 0, 0)
end
