Geometry1D.ExtremitiesPositions

説明

指定された1Dジオメトリの末端位置を取得します。

スクリプト 構文

Geometry1D.ExtremitiesPositions( compIdx, startPos, endPos );

パラメータ

パラメータ タイプ 詳細
compIdx Integer コンポーネントのインデックス

指定可能な値:

説明:

0 <= compIdx < 0D ジオメトリの数 compIdx は有効である必要があります。
startPos SIVector3 戻されるときに、(compIdx)番目の 1Dジオメトリの開始位置が含まれます。
endPos SIVector3 戻されるときに、(compIdx)番目の 1Dジオメトリの終了位置が含まれます。

VBScript の例

'Create a cube
CreatePrim "Cube", "MeshSurface"
set oSelList = GetValue("SelectionList")
set oItem = oSelList(0)
set oGeometry = oItem.obj
oNb1D = oGeometry.Nb1D
set o1DGeometry = oGeometry.Geometry1D
set oStartPos = XSIMath.CreateVector3()
set oEndPos = XSIMath.CreateVector3()
' Loop on all the 1D geometry
for i = 0 to oNb1D - 1
o1DGeometry.ExtremitiesPositions i, oStartPos, oEndPos
LogMessage "Component [" & i & "] start position : " & oStartPos.x & " | " & oStartPos.y & " | " & oStartPos.z 
LogMessage "Component [" & i & "] end position : " & oEndPos.x & " | " & oEndPos.y & " | " & oEndPos.z 
next