1
私の図面には3点の円弧があります。標準で提供される動的属性は長方形と同じです。後で動的に変更できるように3つのポイントを属性として定義する方法はありますか?アークのスケッチアップにおける動的コンポーネントの属性
私の図面には3点の円弧があります。標準で提供される動的属性は長方形と同じです。後で動的に変更できるように3つのポイントを属性として定義する方法はありますか?アークのスケッチアップにおける動的コンポーネントの属性
Entity
とModel
にそれぞれ添付されたAttributeDictionaryを使用して、カスタム属性を格納できます。
dictname = "TestDictionary"
key = "arcs"
value = ["x", "y", "z"]
model = Sketchup.active_model
model.set_attribute dictname, key, value
dict = model.attribute_dictionary dictname
arcs = dict[key]
// or
arcs = model.get_attribute dictname, key