Hi Davide, Thanks for explaining your workflow. The header file for C3DFileAdapter is conditionally included, so you may have to define the preprocessor symbol WITH_EZC3D for the compiler. We probably should define that in our CMakeLists.txt regardless since that's what we do during release, but let...
Hello, The missing files issue can be fixed by setting the search path as explained by Mohammadreza (if you do have the files locally). The last error is caused by using a binary vtp file which is no longer supported since 4.0. You should try to find an ascii version of the file or some online tools...
Hi Davide, I'm not sure why you're trying to build from source rather than use an existing distribution if new to programming, there could be an easier pathway to proceed but what you need to do is: 1. When building the dependencies project, enable the checkbox to SUPERBUILD_ezc3d in CMake. 2. When ...
Hi Milan, If you plan to use the Java bindings then you need to rerun CMake so that these bindings are recreated and then build the whole project, at that point the java test cases should build and pass. If however you have no intention to use the bindings then you should turn these off at CMake and...
Hi Jason, Considering that we literally have hundreds of students using the tutorial without an issue, I suspect that the problem lies with the instructions you received to run the tutorial rather than with the tutorial itself. If you can provide more context as to what version of the software you'r...
Hello, While the steps to hookup Matlab with OpenSim are a bit error prone, once you have it working it should continue to work. There are a couple issues though that you have to keep an eye on: 1. What version of OpenSim you used to perform the hookup? you generally can't change the version or the ...
Hi Deepak, While a little bit surprising, it's not totally unexpected because of the way Windows resolves libraries/DLLs based on one single common PATH environment variable. What likely happened is that 3.3 added the path to the 3.3 distribution to the front of the common PATH environment variable ...
Hi Davide, Within C++, there're some settings and files/directories that need to be included at the top of the source file e.g. OpenSim/OpenSim.h if working with a distribution or the full path OpenSim/Common/C3DFileAdapter.h, and the paths need to be searched by your project build files etc. If you...