ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorEntityGeometry Class / GetNormals Method
Buffer for the normals. The buffer must be long enough to receive the normals from start to end taking into account the normal size (three floating-point values).
The start position of the normal to be returned.
The end position of the normal to be returned.




In This Topic
    GetNormals Method
    In This Topic
    Returns the geometry normals on the specified range.
    Syntax
    'Declaration
     
    Public Sub GetNormals( _
       ByVal normals() As Single, _
       ByVal start As Integer, _
       ByVal end As Integer _
    ) 
    'Usage
     
    Dim instance As ImGearVectorEntityGeometry
    Dim normals() As Single
    Dim start As Integer
    Dim end As Integer
     
    instance.GetNormals(normals, start, end)
    public void GetNormals( 
       float[] normals,
       int start,
       int end
    )
    public: void GetNormals( 
       float[]* normals,
       int start,
       int end
    ) 
    public:
    void GetNormals( 
       array<float>^ normals,
       int start,
       int end
    ) 

    Parameters

    normals
    Buffer for the normals. The buffer must be long enough to receive the normals from start to end taking into account the normal size (three floating-point values).
    start
    The start position of the normal to be returned.
    end
    The end position of the normal to be returned.
    See Also