|
AABBTreeNode Constructor
|
create a new AABB tree node
Namespace:
Karamba.Utilities.AABBTrees
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
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