Click or drag to resize
Ab4d.SharpEngine logo

MeshOctreeCollectBoundingBoxesInLevel Method

CollectBoundingBoxesInLevel is a diagnostics method and returns a list of bounding boxes from child nodes.

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 4.0.9584+ba1aaa26d4181dd3fa8ed7b6398391d1affa36c8
Syntax
C#
public List<BoundingBox> CollectBoundingBoxesInLevel(
	int nodeLevel,
	bool getActualBoundingBox = true,
	bool collectOnlyNodesWithTriangles = true
)

Parameters

nodeLevel  Int32
node level
getActualBoundingBox  Boolean  (Optional)
true to get ActualBoundingBox, false to get NodeBoundingBox
collectOnlyNodesWithTriangles  Boolean  (Optional)
when true then only bounding boxes from nodes that have any triangle is collected

Return Value

ListBoundingBox
list of bounding boxes from child nodes
See Also