예제 #1
0
파일: test_mesh.py 프로젝트: hjkatz/ezdxf
 def setUp(self):
     self.tags = ClassifiedTags.from_text(MESH)
     self.mesh = Mesh(self.tags, DWG)
예제 #2
0
def mesh(dwg):
    tags = ExtendedTags.from_text(MESH)
    return Mesh(tags, dwg)
예제 #3
0
def mesh(dwg):
    tags = tag_processor(ExtendedTags.from_text(MESH))
    return Mesh(tags, dwg)