Skip to content

Commit

Permalink
Update stdQuadTree.cls
Browse files Browse the repository at this point in the history
  • Loading branch information
sancarn committed Aug 5, 2024
1 parent 03a7f5e commit a7b39ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/stdQuadTree.cls
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,9 @@ End Function
'@param halfDimension - radius of box
'@returns - The box UDT
Private Function AABB_CreateEx(ByRef center As XY, ByVal halfDimension As Double) As AABB
AABB_Create.center.x = center.x
AABB_Create.center.y = center.y
AABB_Create.halfDimension = halfDimension
AABB_CreateEx.center.x = center.x
AABB_CreateEx.center.y = center.y
AABB_CreateEx.halfDimension = halfDimension
End Function

'Checks if a box contains a point
Expand Down

0 comments on commit a7b39ad

Please sign in to comment.