Attempting to make a deep copy and modify it ``` from copy import deepcopy stl = admesh.Stl('hellskull.stl') stl_copy = deepcopy(stl) stl_copy.rotate_z(5) ``` results in `admesh.AdmeshError: STL not opened`.