UnfoldSelectCut

導入

v7.5

詳細

指定した Unfold Property に関連付けられているカッティングラインの定義を選択します。

スクリプト構文

oBoolean = UnfoldSelectCut( UnfoldProperty, [Object(s)] );

戻り値

コマンドが成功したかどうかをレポートするBooleanを戻します。

パラメータ

パラメータ タイプ 説明
UnfoldProperty Unfold Property(またはそのポインタ) オブジェクトに適用されている Unfold Property
Object(s) X3DObject オブジェクトのリスト カッティング ラインを保持するオブジェクト

デフォルト値:指定されていない場合は、現在の選択が使用されます。

Python の例

#

# This example demonstrates how to select the

# current cutting definition of an Unfold property

# 

a = Application

a.NewScene("", 0)

def LogCuts( in_prop ) :

	x = Application

	x.UnfoldSelectCut(in_prop)

	if (x.Selection.Count) :

		x.LogMessage(in_prop.Parent3DObject.Name + " cutting line: " + x.Selection(0).Value)

	else :

		x.LogMessage(in_prop.Parent3DObject.Name + " cutting line: [empty]")

	

g = a.CreatePrim("Grid", "MeshSurface")

# Set up an Unfold property on the grid with a cutting line

a.UnfoldApply("grid")

up = g.Properties("Unfold")

a.UnfoldSetCut(up, "grid.edge[14,34,51,68,71,73,75]")

LogCuts(up)

# -------------------------

# Expected results

# INFO : grid cutting line: grid.edge[14,34,51,68,71,73,75]

関連項目

UnfoldAddToCut UnfoldAdjustUpdate UnfoldApply UnfoldApplySel UnfoldClearCut UnfoldPackUpdate UnfoldRemoveFromCut UnfoldSetCut UnfoldUpdate Unfold Property Editor reference