Hi! I was trying to use your repo, so I followed the instruction to set up a conda environment:
conda create -n fast_cody python=3.8
conda activate fast_cody
pip install fast-cody
Then I tried running the following python script:
import fast_cody as fcd
fcd.apps.interactive_cd_rig_anim()
However, I got this error message:
File "test.py", line 2, in fcd.apps.interactive_cd_rig_anim() File "/home/minion/miniconda3/envs/fast_cody/lib/python3.8/site-packages/fast_cody/apps/interactive_cd_rig_anim.py", line 98, in interactive_cd_rig_anim [D2, bI, CP] = igl.point_mesh_squared_distance(Vpsurf, V, aI) TypeError: point_mesh_squared_distance(): incompatible function arguments. The following argument types are supported: 1. point_mesh_squared_distance(P: numpy.ndarray[dtype=float64, shape=(, ), writable=False], V: numpy.ndarray[dtype=float64, shape=(, ), writable=False], Ele: numpy.ndarray[dtype=int64, shape=(, ), writable=False]) -> typing.Tuple[numpy.ndarray[dtype=float64, shape=(), order='C'], numpy.ndarray[dtype=int64, shape=(), order='C'], numpy.ndarray[dtype=float64, shape=(*, *), order='C']]
Do you have any ideas of fixing this? Thank you so much!