Sets the geometry points on the specified range.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Sub SetPoints( _
   ByVal () As Single, _
   ByVal  As Integer, _
   ByVal  As Integer _
) 
             
        
            
            'Usage
 
Dim instance As ImGearVectorEntityGeometry
Dim points() As Single
Dim start As Integer
Dim end As Integer
 
instance.SetPoints(points, start, end)
             
        
            
            public void SetPoints( 
   float[] ,
   int ,
   int 
)
             
        
            
            public: void SetPoints( 
   float[]* ,
   int ,
   int 
) 
             
        
            
            public:
void SetPoints( 
   array<float>^ ,
   int ,
   int 
) 
             
        
             
        
            Parameters
- points
 
- Buffer with the new points.
 - start
 
- The start index of the point to be set.
 - end
 
- The end index of the point to be set.
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            See Also