Skip to content

Commit

Permalink
removed unnecessary dependencies, not exporting BBox and BSphere anym…
Browse files Browse the repository at this point in the history
…ore as may clash with other geometry packages which take precedence
  • Loading branch information
anicusan committed Jun 30, 2023
1 parent 8e50888 commit be652c9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
SyncSort = "3aad29fc-5640-4e8d-a22d-e10722c484ad"

[compat]
DocStringExtensions = "0.9"
Expand Down
4 changes: 1 addition & 3 deletions src/IBVH.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@
module IBVH

# Functionality exported by this package by default
export BVH, BVHLeaf, BVHTraversal, traverse
export BVH, BVHTraversal, traverse
export ImplicitTree, memory_index, level_indices, isvirtual
export BSphere, BBox, center, radius, lower, upper


# Internal dependencies
using LinearAlgebra

using Parameters
using StaticArrays
using DocStringExtensions
Expand Down
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using IBVH
using IBVH: BBox, BSphere

using Test
using Random
Expand Down

0 comments on commit be652c9

Please sign in to comment.