We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d4ee1 commit a1149f6Copy full SHA for a1149f6
1 file changed
src/FastPointQuery.jl
@@ -5,15 +5,13 @@ using CondaPkg, PythonCall
5
const np = PythonCall.pynew()
6
const shapely = PythonCall.pynew()
7
const o3d = PythonCall.pynew()
8
-const trimesh = PythonCall.pynew()
9
10
function __init__()
11
@info "initializing environment..."
12
try # import Python modules
13
PythonCall.pycopy!(np , PythonCall.pyimport("numpy" ))
14
PythonCall.pycopy!(shapely, PythonCall.pyimport("shapely"))
15
PythonCall.pycopy!(o3d , PythonCall.pyimport("open3d" ))
16
- PythonCall.pycopy!(trimesh, PythonCall.pyimport("trimesh"))
17
catch e
18
@error "Failed to initialize Python ENV" exception=e
19
end
0 commit comments