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
0
votes
1 answer

How to visualize shapes without grid lines with jzy3d?

I am visualizing several shapes with jzy3d with code like this: chart.getScene().getGraph().add(new Sphere(pos, 0.05f, 5, Color.GREEN)); The sphere is shown but hslice/vslice lines are shown too. I want simply to show the shapes without these white…
0
votes
1 answer

JogAmp gluegen-rt can't find native library

I'm on OSX 10.7.5, Eclipse 3.8.0, using JDK 1.7. I'm trying to build a project using jzy3d and JogAmp: particularly jogl, gluegen, and gluegen-rt. I've followed this tutorial for setting up a user library for JOGL in my java project.…
user2303321
  • 297
  • 2
  • 11
0
votes
0 answers

Access .java src files in Reference Library that don't have .class files

I'm using Eclipse 3.8.0 on OSX 10.7.5 and I'm trying to run jzy3d-9.0 (a 3d graphing package). There are at least two libraries that I need import. The first library came in both .class and .java files, which I was able to add to my reference…
user2303321
  • 297
  • 2
  • 11
0
votes
1 answer

Does JZY3D-API support "plot3(...)" function in Matlab?

Matlab support 3D line plotting with plot3 function. But I want to do this with JZY3D API. Does JZY3D api support this operation like matlab? If it is, which method does this line plotting? Please help me!! Thank you
0
votes
0 answers

GLException: No default device available in Android Studio

Before getting the error in the title, I was getting the following transformException Duplicate files copied in APK META-INF/LICENSE path\to\file\miglayout-3.7.4.jar path\to\file\log4j-1.2.16.jar I cannot delete either, because they are…
Ryan Chrome
  • 1
  • 1
  • 4
0
votes
1 answer

Cast jzy3d.canvas to awt.component

I need cast the jzy3d canvas to java.awt.component, I want to display the chart in my frame with JCombobox and button but when I want to cast canvas to component, the program was dropped. Thank you for your answers. I have try this and don't help…
Kex
  • 93
  • 1
  • 9
0
votes
1 answer

Plotting mesh grid surface in Java

I have a 40x40 array filled with double values that correspond to a mesh grid composed of 2 matrices in Java. I would like to plot a surface out of those values in 3D, and found JZY3D library that seems appropriate, but I don't know where to start…
borgmater
  • 658
  • 3
  • 11
  • 35
0
votes
0 answers

Project mouse 2d to 3d give wrong result when model is rotated

public Coord3d projectMouse(int x, int y) { GL2 gl = getCurrentGL(); Coord3d p = cam.screenToModel(gl, glu, new Coord3d((float) x, (float) y, 0)); getCurrentContext().release(); return p; } I am using Jzy3d library, i want to get…
malik badar
  • 89
  • 2
  • 9
0
votes
1 answer

Running jzy3d demos result in ClassNotFoundException

The problem is as follows, during startup of the jzy3d demo ScatterDemo.java : Exception in thread "main" java.lang.NoClassDefFoundError: javax/media/opengl/GLProfile at org.jzy3d.chart.Settings.(Settings.java:19) at…
SU System
  • 23
  • 2
0
votes
1 answer

How to stop jzy3d from printing a help message?

When using AnalysisLauncher.open(new AbstractAnalysisObj), the library always prints the following message: Rotate : Left click and drag mouse Scale : Roll mouse wheel Z Shift : Right click and drag mouse Animate : Double left…
Didii
  • 1,194
  • 12
  • 36
0
votes
1 answer

Embedding jzy3d in applet

I am trying to create an applet that creates a graph, but the applet opens another window. I don't know what changes should be done in code in order to make it work. I understand that the reason for it is ChartLauncher. import…
user3725190
  • 343
  • 4
  • 14
0
votes
2 answers

Using jzy3d to plot 3D surface in Java

I have a tab-delimited CSV file that has a header, and its first column are labels for each row. For example. Label Sample1 Sample2 Sample3 Sample4 Sample5 U.S.A. 10.1 3.2 5.6 6.9 7.3 Canada 9.8 4.5 …
TonyW
  • 18,375
  • 42
  • 110
  • 183
0
votes
2 answers

How to use jzy3d in android using eclipse?

Hi. I want to create a 3dplot graph in android. I want to use jzy3d lib and found this example for beginning. import org.jzy3d.chart.Chart; import org.jzy3d.colors.Color; import org.jzy3d.colors.ColorMapper; import…
max
  • 5,963
  • 12
  • 49
  • 80
0
votes
1 answer

Embedding Jzy3D in an applet

I'm trying to make an applet that displays a Jzy3D graph that's manipulable. Currently I've managed to get it to display the graph but I can't affect it in anyway; this makes sense as the applet currently isn't looking for any user input. How am I…
Daniel
  • 2,435
  • 5
  • 26
  • 40
0
votes
1 answer

jzy3d display issue in RCP Netbean

I have upgrade jzyv8 to v9 in my Netbean application. But I cannot resize/maximize Jpanel/frame using Jzy3d v9 with Jogl 2, i got blank screen after resize panel and if i dig into code view object is null in the Render3d object. GJPanel dispose the…
malik badar
  • 89
  • 2
  • 9