本文整理汇总了Python中Mesh.addNode方法的典型用法代码示例。如果您正苦于以下问题:Python Mesh.addNode方法的具体用法?Python Mesh.addNode怎么用?Python Mesh.addNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mesh
的用法示例。
在下文中一共展示了Mesh.addNode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: len
# 需要导入模块: import Mesh [as 别名]
# 或者: from Mesh import addNode [as 别名]
while len(flag) is not 0:
currentLine = file.readline()
#### Mesh and Nodes ####
if partMarker in currentLine:
## locate the partName ##
## the needed information is always after an equal sign ##
partName = currentLine.split("=")[1]
mesh = Mesh(partName)
## nodes follow part
file.readline() #skip one line
currentLine = file.readline()
## ID, x, y, z if needed
ID, x, y = currentLine.strip().split(",") # <class 'int'> target
while (mesh.nodeCount + 1 == int(ID)):
mesh.addNode(Node(int(ID), float(x), float(y)))
currentLine = file.readline()
## While loop is terminated when element is encounter ##
try:
ID, x, y = currentLine.strip().split(",") # <class 'int'> target
except:
break
## remove partMarker once all information acquired
flag.remove(partMarker)
#############################################################
#### Elements ####
if elementMarker in currentLine:
elementName = currentLine.split("=")[1]
currentLine = file.readline()# Line cursor moves 1 down