Point.Samples operator

説明

このポイントの各Sampleオブジェクトを含むSampleCollectionを戻します。

注:このプロパティは IDispatch オブジェクトではなく SampleCollection を戻します。つまり Point メソッドとプロパティへのアクセスが可能になるのではなく、Sample オブジェクトで使用できるメソッドとプロパティにのみアクセスできます。

C#構文

// get accessor

SampleCollection rtn = Point.Samples;

VBScript の例

set oCube = ActiveSceneRoot.AddGeometry("Cube","MeshSurface")

set oPoints = oCube.ActivePrimitive.Geometry.Points

set oSamples = oPoints(1).Samples

str = "The sample indices for Point(1) of this geometry are: "

for each oSample in oSamples

	str = str & " " & oSample.Index

next

logmessage str

関連項目

Geometry.Samples Geometry.Points