Python Pythonでのリスト操作 リストAからリストBを削除するラムダ式を使っている。listA = listB = listA = list(filter(lambda x:x not in listB, listA))print(listA)# リストAとリストBの共通... 2020.05.27 Python
Python Python SOPのアトリビュート参照と編集 ジオメトリinput1に差したジオメトリを参照する場合inputs = node.inputs()geo1 = inputs.geometry()# Cdを取得list_color = geo1.pointFloatAttribValues... 2020.05.24 Python
Python Subnetのボタンから内部ノードのボタンを実行する subnetにボタンを作成して内部のROP Geometry OutputノードのSave to Diskボタンを押す方法。Save to Diskのパラメータはexecuteなのを確認。SubnetのUIにボタンを配置して、Callbac... 2020.05.23 Python
VEX VEXでのアトリビュートの参照 外のノードから参照するint id[] = point("op:../attribwrangle1", 0, "indices", 0);float dist = prim("op:../foreach_begin1", "curveLen... 2020.05.09 VEX