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
1
vote
0 answers

Setting size of jzy3d chart

I'm drawing points on a 3d scatterplot in jzy3d. When new points are added, the chart automatically rescales to contain all the points currently on the screen. I have two problems with this: Firstly, that rescaling is not applied equally to all axes…
brickmack
  • 21
  • 2
1
vote
1 answer

Simple scatter plotter with Jzy3d (Java)

I'm trying to write a plotter class to display a set of data points (x, y, z) stored in an array using Jzy3d. The class should contain a method plot() that takes the data set and (automatically) displays it in a 3d coordinate system.The method is…
FizzleDizzle
  • 187
  • 11
1
vote
0 answers

Translucent Glass Pane over java.awt.Panel

Hi have a Swing User Interface composed by 4 different plots (extensions of javax.swing.JPanel). One of these plots is built using jzy3d 1.0.0 library and returns a component of type CanvasNewtAwt (extension of java.awt.Panel). So that I have a…
Roberto
  • 243
  • 1
  • 5
  • 15
1
vote
1 answer

Save jzy3d Chart in PDF using DynamicReports

I'm using DynamicReports API to create a PDF report displaying the results of my Java application (tables and charts). One of the chart I have to display is a 3D Surface Plot build using jzy3d 0.9.0. Here is my code: import static…
Roberto
  • 243
  • 1
  • 5
  • 15
1
vote
1 answer

How to Customize jzy3d Chart

I'm using org.jzy3d package (v 0.9) to create Surface plots. 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
1
vote
1 answer

How to save jzy3d chart to file

ChartLauncher.openChart(chart) Doesn't work for me*, so I'd like something like ChartSaver.saveChart(chart, path) if such a thing exists. *I get: libEGL warning: failed to create a pipe screen for i965
samthebest
  • 30,803
  • 25
  • 102
  • 142
1
vote
2 answers

How to use old JOGL versions for jzy3d?

I found out about jzy3d today, and it looks exactly like what i need for my current school project (which is about drawing a surface in 3D, related to hydrogeology). I downloaded the demo (ver. 0.9.1), but when i try to run it (more specifically the…
N. Couvrat
  • 11
  • 1
1
vote
1 answer

Can jzy3d be used with GEF-based applications?

We are planning to use one of the chart libraries for our Eclipse Application. jzy3d is one of them that seems pretty useful. However, there is no information, whether it could be used with our data providing solutions like GEF for plotting. Does…
1
vote
1 answer

How to launch a Jzy3d graph from GUI?

I would like to know how to launch a Jzy3D graph from GUI. Basically I have created a simple GUI that will allow my users to display a 3D graph with scattered points if they click the "3D graph" JMenuItem. However, when I do this, instead of a…
Adi Ten
  • 163
  • 1
  • 1
  • 5
0
votes
2 answers

How to paint surfaces in jzy3D with plain colors

I have some surfaces and I want to paint one in red, another un blue... Tutorial of jzy3D only shows how to paint as a rainbow with ColorMaps: Any help?
Roman Rdgz
  • 12,836
  • 41
  • 131
  • 207
0
votes
1 answer

jzy3d builder cannot be resolved error on eclipse

So, I've recently downloaded (via Maven) jzy3d library so that I can translate and improve an existing program of mine from JS to Java, and to get a handle on the new library I was trying some examples available on the library site but, as the title…
liuzp
  • 1
  • 1
0
votes
1 answer

JOGL Chart compilation error

I´m trying to work with Jzy3D library and paint some charts under openGl. But when I try to compile the code I obtain following error: Exception in thread "main" java.lang.NoClassDefFoundError: javax/media/opengl/GLCanvas at…
Reshi
  • 799
  • 4
  • 15
  • 32
0
votes
1 answer

Scatter plot with Jzy3d

I am using Jsy3d to draw a 3d scatter plot in Java. However, I noticed that the drawing order of the points seems to be based on the order of the given List of Points, not on the distance to the camera. Is there a way to fix this?
Anton Ballmaier
  • 876
  • 9
  • 25
0
votes
1 answer

How to set up log4j?

I have trtied to use the jzy3d api to plot a 3d graph, I tried to set it up using maven (I am new to this), I basically just copied what the api page told me, but i am consistenly running into a log4j warning.
Fdtt22
  • 1
0
votes
0 answers

How to migrate a jzy3d java project into android?

I followed jzy3d's demo and made a 3D plot model with AnalysisLauncher.open() in IntelliJ, win10. It's working great. Now I need to migrate to Android so that the model can be displayed in a mobile application. What kind of change is needed for my…
Stefan
  • 21
  • 1
  • 4