TrianglePointCollection.NormalArray

Description

Returns the triangle point normals of this collection as a 2-dimensional Array of x,y,z values for every TrianglePoint, organized as: [x,y,z values][TrianglePoint]

Examples

VBScript Example

set root = application.activeproject.activescene.root
set obj = root.addgeometry( "Cube", "MeshSurface" )
set triangle = obj.activeprimitive.geometry.Triangles(0)
set Points = triangle.Points
a = triangle.points.normalarray
for i = LBound(a,2) to UBound(a,2)
        logmessage "p.normal = " & a(0,i) & "," & a(1,i) & "," & a(2,i)
next