root method

bool root()

Returns true if this BVH node is a root node.

Implementation

bool root() {
	return parent == null;
}