Initializes a new instance of the 
RenderEllipse class, assigning the location and the size of the ellipse, and the 
LineDef used to draw it.
 
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Function New( _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As LineDef _
)
             
        
            
            '使用法
 
Dim x As Unit
Dim y As Unit
Dim width As Unit
Dim height As Unit
Dim shapeLine As LineDef
 
Dim instance As New RenderEllipse(x, y, width, height, shapeLine)
             
        
            
            public RenderEllipse( 
   Unit ,
   Unit ,
   Unit ,
   Unit ,
   LineDef 
)
             
        
             
        
            パラメータ
- x
 
- The X coordinate of the ellipse.
 - y
 
- The Y coordinate of the ellipse.
 - width
 
- The width of the ellipse.
 - height
 
- The height of the ellipse.
 - shapeLine
 
- The LineDef used to draw the ellipse.
 
             
            
            
            
            
            
            
            
            
            
            
            
            参照