Returns geometric layout of the radial gradient object.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Sub GetVector( _
   ByRef  As ImGearVectorPoint3D, _
   ByRef  As ImGearVectorPoint3D, _
   ByRef  As Single, _
   ByRef  As Boolean _
) 
             
        
            
            'Usage
 
Dim instance As ImGearVectorGradientRadial
Dim innerPoint As ImGearVectorPoint3D
Dim outerCenter As ImGearVectorPoint3D
Dim outerRadius As Single
Dim isAbsolute As Boolean
 
instance.GetVector(innerPoint, outerCenter, outerRadius, isAbsolute)
             
        
            
            public void GetVector( 
   ref ImGearVectorPoint3D ,
   ref ImGearVectorPoint3D ,
   ref float ,
   ref bool 
)
             
        
            
            public: void GetVector( 
   ref ImGearVectorPoint3D ,
   ref ImGearVectorPoint3D ,
   ref float ,
   ref bool 
) 
             
        
            
        
             
        
            Parameters
- innerPoint
- Returns coordinates of the inner point.
- outerCenter
- Returns coordinates of the center of the outer circle.
- outerRadius
- Returns radius of the outer circle.
- isAbsolute
- Returns a flag indicating whether the coordinates and radius are relative or absolute.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also