issue_939.py 139 B

1234
  1. from vedo import *
  2. # cloning generates the same object type (not Mesh)
  3. print(type(Plane().clone()))
  4. print(type(Line([0,0],[1,1]).clone()))