An open source implementation of JT (Jupiter Tessellation) viewer and reader. Forked from Open CASCADE repository.
This instruction will get you a copy of the project up and running on your local machine. It has been tested on Debian Linux 10 (Buster), 9 (Stretch) and 8 (Jessie).
Install build environment. I use Ninja to reduce project build time.
sudo apt-get -y install build-essential cmake git ninja-buildThen install dependencies for the project.
sudo apt-get -y install qt5-default oce-draw liboce-\*-dev libeigen3-dev libtbb-dev zlib1g-devClone the cbsghost/oce-jt project from Github repository.
git clone --recursive https://github.com/cbsghost/oce-jt.gitCreate a build directory.
cd oce-jt
mkdir buildConfigure and build the project with Ninja.
cd build
cmake -G "Ninja" ..
ninjaFinally, the JT Assistant application can be run with the following command:
./JTAssistant/JTAssistantThis project is licensed under the GNU General Public License v2.0 - see the LICENSE.txt file for details.