v3.0
ジオメトリのポイント間を移動できます。
Point Point.Navigate( siNavigateComponentType in_siNavigate ); |
oReturn = Point.Navigate( Navigation ); |
パラメータ | タイプ | 説明 |
---|---|---|
Navigation | siNavigateComponentType | 移動方向を選択します。 |
set oObj = ActiveSceneRoot.addgeometry( "Cube", "MeshSurface" ) set oPoint = oObj.ActivePrimitive.Geometry.Points(7) logmessage "The first point of this geometry is of index " & oPoint.Navigate(siFirsComponent).Index logmessage "The last point of this geometry is of index " & oPoint.Navigate(siLastComponent).Index logmessage "The next point is of index " & oPoint.Navigate(siNextComponent).Index logmessage "The previous point is of index " & oPoint.Navigate(siPreviousComponent).Index |