| 
            
              AABBTreeNode Constructor 
             | 
          
        
         
            Initializes a new instance of the 
AABBTreeNode class.
            create a new AABB tree node.
            
 
    Namespace: 
   Karamba.Utilities.AABBTrees
    Assembly:
   KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic AABBTreeNode(
	double lx,
	double ly,
	double lz,
	double ux,
	double uy,
	double uz
)
Public Sub New ( 
	lx As Double,
	ly As Double,
	lz As Double,
	ux As Double,
	uy As Double,
	uz As Double
)
public:
AABBTreeNode(
	double lx, 
	double ly, 
	double lz, 
	double ux, 
	double uy, 
	double uz
)
new : 
        lx : float * 
        ly : float * 
        lz : float * 
        ux : float * 
        uy : float * 
        uz : float -> AABBTreeNodeParameters
- lx
 - Type: SystemDouble
lower limit of x-coordinates. - ly
 - Type: SystemDouble
lower limit of y-coordinates. - lz
 - Type: SystemDouble
lower limit of z-coordinates. - ux
 - Type: SystemDouble
upper limit of x-coordinates. - uy
 - Type: SystemDouble
upper limit of y-coordinates. - uz
 - Type: SystemDouble
upper limit of z-coordinates. 
See Also