本文整理汇总了Python中Base.setGraphRevised方法的典型用法代码示例。如果您正苦于以下问题:Python Base.setGraphRevised方法的具体用法?Python Base.setGraphRevised怎么用?Python Base.setGraphRevised使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Base
的用法示例。
在下文中一共展示了Base.setGraphRevised方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: write2DLFile
# 需要导入模块: import Base [as 别名]
# 或者: from Base import setGraphRevised [as 别名]
def write2DLFile(self):
print 'storing DL data'
import Base
filename = None
try:
filename = Base.__currentProjectPath__ + '/data.dl'
file = open( filename , 'wb' , True) # 使用缓存,flush时再写入硬盘
print 'begin writing data to file %s'%filename
except:
FreeCAD.Console.PrintError(' %s open failed\n'%filename)
return
Base.setGraphRevised() # graph of active document has
self.writePandect( file )
self.writeJointSetsAndSlope(file)
file.flush()
self.writeBoundaryNodes(file)
file.flush()
self.writeTunnels(file)
self.writeLines( file )
file.flush()
self.writePoints( file )
file.close()
import Base
wholePath = Base.__workbenchPath__ + '\\Ff.c'
file = open( wholePath , 'wb' ) #保存文件名
file.write(filename)
file.close()
print 'file save done'