作業内容
PythonでVertexの座標と名前をまとめて設定するための関数を定義します.
def create_named_vertex(x, y, z, name):
command_string = “create vertex {0} {1} {2}”
cubit.cmd(command_string.format(x, y, z))
last_id = cubit.get_last_id(“vertex”)
command_string = “vertex {0} rename ‘{1}’
cubit.cmd(command_string.format(last_id, name))
定義した関数を用いて、Vertexの座標と名前をまとめて設定します.
create_named_vertex(0, 0, 0, “f1”)
create_named_vertex(1, 0, 0, “f2”)
create_named_vertex(2, 0, 0, “f3”)
create_named_vertex(3, 0, 0, “f4”)
create_named_vertex(4, 0, 0, “f5”)
各Vertexの名前を表示し、確認します.
cubit.cmd(“label vertex name”)
PythonでVertexの座標と名前をまとめて設定する方法 |
def create_named_vertex(x, y, z, name): command_string = “create vertex {0} {1} {2}” cubit.cmd(command_string.format(x, y, z)) last_id = cubit.get_last_id(“vertex”) command_string = “vertex {0} rename ‘{1}’ “ cubit.cmd(command_string.format(last_id, name)) ## 定義した関数に基づいてVertexの座標と名前をまとめて設定する. create_named_vertex(0, 0, 0, “f1”) create_named_vertex(1, 0, 0, “f2”) create_named_vertex(2, 0, 0, “f3”) create_named_vertex(3, 0, 0, “f4”) create_named_vertex(4, 0, 0, “f5”) ## Vertexの名前を確認する. cubit.cmd(“label vertex name”) |