Questions tagged [jzy3d]

Jzy3d is an open-source Java library that allows you to easily draw 3D scientific data.

Jzy3d is an open-source Java library that allows you to easily draw 3D scientific data: surfaces, scatter plots, bar charts, and lot of other 3D primitives. The API provides support for rich interactive charts, with colorbars, tooltips and overlays. Axis and chart layout can be fully customized and enhanced.

Relying on JOGL2, you can easily deploy native OpenGL charts on Windows, Unix, MacOs and integrate into Swing, AWT, or SWT. Various contributions have also made Jzy3d available for other languages/platforms such as Scala, Groovy, and Matlab.

Source: http://jzy3d.org/

46 questions
6
votes
0 answers

Multiple Repositories in build.gradle is not working (jzy3d) (MultiModuleProject)

I've got a problem with my Java project in gradle. I'm using several dependencies with gradle, one of it is the jzy3d.api. I have included it in the build.gradle file and added the url to the repositories but it doesn't find it. I've added the…
MrPchicken
  • 61
  • 1
  • 1
  • 3
4
votes
3 answers

Failure to Execute Goal Maven Surefire Plugin on Child Module for Jzy3d Program

To simplify what I'm asking: what is a test failure and how do I rectify it? I'm new to Maven, and I'm trying to get the graphical plotting application Jzy3d to work on my computer. I've updated all of the plugins to be the newest versions in the…
TheJerseyChemist
  • 43
  • 1
  • 1
  • 7
4
votes
1 answer

Simple Jzy3d application gives runtime exception - No implemented exception

I attempted to do a hello world application on jzy3d plotting library. I took the example from the website and when I run it I got the following error: Exception in thread "main" java.lang.RuntimeException: No implemented exception Can anyone…
Vivek V K
  • 1,100
  • 2
  • 15
  • 33
3
votes
0 answers

How to solve the problem 'Inconsistency detected by ld.so: dl-lookup.c: 112: check_match' when using library jzy3d?

When running any 3d plot using jzy3d with Java 11. I consistently run into this error: /usr/lib/jvm/java-11-openjdk-amd64/bin/java -Dvisualvm.id=6004111387252…
tribbloid
  • 4,026
  • 14
  • 64
  • 103
3
votes
1 answer

java jzy3d dependencies issue

I've linked latest jogl library to my project, but unfortunately I have next error during compiling the program Exception in thread "main" java.lang.NoSuchMethodError: javax.media.opengl.GLProfile.isAvailable(Ljava/lang/String;)Z what library should…
Vladyslav Nikolaiev
  • 1,819
  • 3
  • 20
  • 39
3
votes
1 answer

How to label 3D plot axis using jzy3d library?

I was wondering if anybody knows how to assign labels for the (x,y,z) axis using jzy3d 3D plotting library. I have tried to use such assignment: chart.getView().setAxeLabels("","",""); From here:…
madbitloman
  • 816
  • 2
  • 13
  • 21
2
votes
1 answer

Example Code imports are missing in jzy3d

The Example code imports are missing. Does anyone know what I not including? I got the imports for mvn from http://www.jzy3d.org/download-0.9.1.php The example code is from…
user1198289
  • 637
  • 1
  • 5
  • 14
2
votes
1 answer

What are the correct jar files for Jzy3d API?

Can someone tell me which .jar files to download to get the newest Jzy3d version? I have looked at their website but I don't know which files to download.
FizzleDizzle
  • 187
  • 11
2
votes
1 answer

jzy3d change color mapping

I'm trying to create a surface chart using jzy3d package. Here's my code: int stepsX = 6; Range rX = new Range(1,6); int stepsY = 7; Range rY = new Range(0,6); Mapper mapper = new Mapper(){ @Override public double f(double x, double y) { …
Roberto
  • 243
  • 1
  • 5
  • 15
2
votes
0 answers

Enforce axis limits in JZY3D plot

Could anyone help me figure out how to set axis limits for a Jzy3D plot? I have a plot where I have rendered a mesh and a few lines. I've tried to limit the axis by changing the bounding box on the axis and all. This manages to limit the actual axis…
anishthecoder
  • 940
  • 6
  • 20
1
vote
1 answer

(jzy3d) How to display tool tip on Scatter effectively?

Currently, we are using jzy3d to display data on 3D chart, but we need to display "tool-tips" when mouse button hovers on a point in Scatter data. Our solution is currently not cpu friendly, since we get all Scatter data with getProjection method,…
baris.aydinoz
  • 1,902
  • 2
  • 18
  • 28
1
vote
2 answers

How to use Jzy3d java 3d chart library?

Can someone please give me some extra basic example of how jzy3d should be used? (The source site's examples don't seam to work for me) I tried the following code: import org.jzy3d.chart.Chart; import org.jzy3d.colors.Color; import…
Jsncrdnl
  • 3,005
  • 5
  • 28
  • 43
1
vote
0 answers

Why jzy3/jogl newt window is always on top?

I'm using jzy3d/SWT with mapper and surface and this code to create the chart (container is a composite with gridLayout) : Settings.getInstance().setHardwareAccelerated(true); jzy3DChart =…
frank b.
  • 55
  • 10
1
vote
1 answer

Is it possible to use Jzy3D in a Netbeans 7.0 application?

Alright, so we're trying to incorporate a 3D scatterplot into our project in Netbeans 7.0, and one of the libraries we chose to test was Jzy3D. It looks likes it would do everything we needed it to, but unfortunately, it's not doing anything. I have…
Poik
  • 2,022
  • 27
  • 44
1
vote
1 answer

Jzy3d 3d interpolation plots not rendering

I am trying to plot a 3d path given a set of coordinates. From jzy3d's demo application, I've found that this is possible through their BernsteinInterpolator and LineStripInterpolated classes. With the help of their source code, my attempt to…
schan
  • 41
  • 1
  • 8
1
2 3 4