Point.Normal operator

説明

ポイントの法線を含むSIVector3を戻します。

VBScript の例

set oRoot = application.activeproject.activescene.root
set oObj = oRoot.addgeometry( "Cube", "MeshSurface" )
set oGeometry = oObj.activeprimitive.geometry
for each oPoint in oGeometry.Points
        set oNormal =  oPoint.Normal
        logmessage "Point [" & oPoint.Index & "].normal : " & _
                        oNormal.x & ", " & _
                        oNormal.y & ", " & _
                        oNormal.z 
next

関連項目

PointCollection.NormalArray SIVector3