示例#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)