ClusterProperty_V1.ElementsValues

説明

値(N x ValueSize)のArrayを戻します。ここで、Nは指定されたオフセットの数に対応します。

パラメータ

パラメータ タイプ 詳細
Offsets Integer値のArray オフセットの配列。この配列が空の場合は、すべてのオフセットが考慮されます。

VBScript の例

CreatePrim "Grid", "MeshSurface"
'Create a texture property containing the projected U,V,W values
CreateProjection "grid", "siTxtPlanarXZ", "siTxtDefaultPlanarXZ", , tex_obj, True
SelectObj "Grid.polymsh.cls.Texture_Coordinates_AUTO.Texture_Projection" ' & tex_obj
'The current selection contains the new texture property
set sel = application.selection(0)
' List of sample points to modify.
mySampleList = Array(1,2)
myValues = sel.obj.ElementsValues( mySampleList )
for i = LBound( myValues, 1 ) to UBound( myValues, 1 )
                logmessage "(" & myValues(i,0) & " , " & myValues(i,1) & ")"
                'Do an operation on each value.
                ' this is the U value
                myValues( i, 0 ) = .45
                ' this is the V value
                myValues( i, 1 ) = .45
next
'Set the new values
sel.obj.SetElementsValues mySampleList , myValues

関連項目

ClusterProperty_V1.NbElements ClusterProperty_V1.ValueSize ClusterProperty_V1.SetElementsValues ClusterProperty_V1