Click or drag to resize
Ab4d.SharpEngine logo

MeshOctreeNodeCollectBoundingBoxesInLevel Method

CollectBoundingBoxesInLevel is a diagnostics method and fills the boundingBoxes list with bounding boxes from child nodes.

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 4.0.9584+ba1aaa26d4181dd3fa8ed7b6398391d1affa36c8
Syntax
C#
public static void CollectBoundingBoxesInLevel(
	MeshOctreeNode node,
	int targetNodeLevel,
	bool getActualBoundingBox,
	bool collectOnlyNodesWithTriangles,
	List<BoundingBox> boundingBoxes
)

Parameters

node  MeshOctreeNode
start node
targetNodeLevel  Int32
target node level
getActualBoundingBox  Boolean
true to get ActualBoundingBox, false to get NodeBoundingBox
collectOnlyNodesWithTriangles  Boolean
when true then only bounding boxes from nodes that have any triangle is collected
boundingBoxes  ListBoundingBox
list of BoundingBox structs
See Also