Open odinsbane opened 2 months ago
I was playing around with a minimal pom to reproduce the issue.
I changed this:
<dependency>
<groupId>net.imglib2</groupId>
<artifactId>imglib2-mesh</artifactId>
<version>1.1.0</version>
</dependency>
To:
<dependency>
<groupId>net.imglib2</groupId>
<artifactId>imglib2-mesh</artifactId>
</dependency>
That caused version 1.0.0 to be downloaded. It seems like some sort of version conflict with the parent pom scijava 38.0.1
I made a simple program to try out the marching cubes algorithm.
On the call to 'calculate I get a no such method exception.
On line 77 it is getting a cursor object. I included that in my code. It works in my main method, but it doesn't work in the MarchingCubes algorithm.