Navigate (Point)
Introduced
3.0
Description
Allows you to navigate through the points of the associated geometry.
Scripting Syntax
Point.Navigate( Navigation )
C# Syntax
Point Point.Navigate( siNavigateComponentType in_siNavigate );
Parameters
|
Parameter |
Type |
Description |
|
Navigation |
Select the direction of navigation. |
Return Value
Examples
VBScript Example
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
See Also
SOFTIMAGE|XSI v6.01