Description
Returns a PointCollection containing each Point on the segment.
C# Syntax
// get accessor PointCollection rtn = Segment.Points;
Examples
VBScript Example
set oRoot = Application.ActiveProject.ActiveScene.Root
set oObj = oRoot.AddGeometry( "Cube", "MeshSurface" )
set oGeometry = oObj.ActivePrimitive.Geometry
for each oSegment in oGeometry.Segments
LogMessage "segment[" & oSegment.Index & "]"
for each oPoint in oSegment.Points
LogMessage oPoint.Position.x & "," & oPoint.Position.y & "," &oPoint.Position.z
next
nextSee Also
Autodesk Softimage v7.5