Click or drag to resize

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)
Syntax
public AABBTreeNode(
	double lx,
	double ly,
	double lz,
	double ux,
	double uy,
	double uz
)

Parameters

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