Point.Position operator

説明

指定されたポイントの位置のコピーを SIVector3 として戻します。

注:ジオメトリの座標を実際に変更する場合は、PointCollection.PositionArrayを使用します。

C#構文

// get accessor

Object rtn = Point.Position;

VBScript の例

set oRoot = application.activeproject.activescene.root

set oObj = oRoot.addgeometry( "Cube", "MeshSurface" )

set oGeometry = oObj.activeprimitive.geometry

' print the position of each point

for each oPoint in oGeometry.Points

	logmessage oPoint.Position.x & _

		", " & oPoint.Position.y & _

		", " & oPoint.Position.z

next