Pathfinding.BBTree.TestIntersections C# (CSharp) Method

TestIntersections() public method

public TestIntersections ( BBTreeBox box, Vector3 p, float radius ) : void
box BBTreeBox
p Vector3
radius float
return void
		public void TestIntersections (BBTreeBox box, Vector3 p, float radius) {
			
			if (box == null) {
				return;
			}
			
			RectIntersectsCircle (box.rect,p,radius);
			
			TestIntersections (box.c1,p,radius);
			TestIntersections (box.c2,p,radius);
		}
		

Same methods

BBTree::TestIntersections ( Vector3 p, float radius ) : void