2020-05

Python

Pythonでのリスト操作

リストAからリストBを削除するラムダ式を使っている。listA = listB = listA = list(filter(lambda x:x not in listB, listA))print(listA)# リストAとリストBの共通...
Python

Python SOPのアトリビュート参照と編集

ジオメトリinput1に差したジオメトリを参照する場合inputs = node.inputs()geo1 = inputs.geometry()# Cdを取得list_color = geo1.pointFloatAttribValues...
Python

Subnetのボタンから内部ノードのボタンを実行する

subnetにボタンを作成して内部のROP Geometry OutputノードのSave to Diskボタンを押す方法。Save to Diskのパラメータはexecuteなのを確認。SubnetのUIにボタンを配置して、Callbac...
VEX

VEXでのアトリビュートの参照

外のノードから参照するint id[] = point("op:../attribwrangle1", 0, "indices", 0);float dist = prim("op:../foreach_begin1", "curveLen...
スポンサーリンク