Im trying to use this importer http://www.interactivemesh.org/models/jfx3dimporter.html to import an STL file as a triangle mesh, i get no errors in the IDE when i write this code:
StlMeshImporter stlImporter = new StlMeshImporter();
stlImporter.read(this.getClass().getResource("Tachi_LP.stl"));
using this import statement
import com.interactivemesh.jfx.importer.stl.StlMeshImporter;
which also doesnt give me an error in the IDE.
I downloaded the zip folder, unzipped it and added it as a library under the project structure in intelliJ, i did the same with the javaFX library im using (versiion 17 directly from their site)
lib is the javafx library and the highlighted one is the importer Library. When i try to run the program i get this error:
package com.interactivemesh.jfx.importer.stl does not exist
Do i have the wrong version or is this no longer compatible with the newer versions of JavaFX?