Go to file
Martin Pernollet 82319ab910 tester project 2018-02-24 22:15:36 +01:00
jzy3d-api adding tester module, change renderer2d interface 2018-02-24 19:07:11 +01:00
jzy3d-depthpeeling initialize version 1.0.2 2017-08-27 02:13:19 +02:00
jzy3d-javafx remove static default update view 2018-01-01 17:02:36 +01:00
jzy3d-jdt-core initialize version 1.0.2 2017-08-27 02:13:19 +02:00
jzy3d-svm-mapper initialize version 1.0.2 2017-08-27 02:13:19 +02:00
jzy3d-swt initialize version 1.0.2 2017-08-27 02:13:19 +02:00
jzy3d-tester tester project 2018-02-24 22:15:36 +01:00
jzy3d-tools-libsvm initialize version 1.0.2 2017-08-27 02:13:19 +02:00
jzy3d-tutorials Add some doc strings 2017-11-24 22:18:09 +00:00
.gitignore clean 2017-05-28 22:07:26 +02:00
.project minor doc edit 2014-05-02 17:53:54 +01:00
.travis.yml fix default rotation notify, canvasawt can reset pixel scale to 1, upgrade to jdk8 for travis 2016-04-13 09:35:06 +02:00
README.md clean readmes 2017-06-01 22:59:55 +02:00
pom.xml adding tester module, change renderer2d interface 2018-02-24 19:07:11 +01:00
pom.xml.releaseBackup release 1.0.1 in progress 2017-08-27 01:12:27 +02:00
pom.xml.versionsBackup initialize version 1.0.2 2017-08-27 02:13:19 +02:00
settings-obf.xml.enc format conflicting classes 2014-12-27 11:29:48 +01:00
travis.help format conflicting classes 2014-12-27 11:29:48 +01:00

README.md

jzy3d-main

This is a main Git repository for Jzy3d providing multiple maven modules.

Travis build status : Build Status

API and modules

  • jzy3d-tutorials : few examples for building main chart families (surfaces, scatters, etc).

Application will require jzy3d-api plus classes to address a specific windowing environement (AWT, SWT, Swing). The API itself has no dependency to AWT, making it buildable for Android environement.

Code specific to a target windowing environement is made available through modules (or sometime source folder separation):

  • jzy3d-api/awt : provides AWT canvases (source folder separation but part of jzy3d-api build)
  • jzy3d-api/swing : provides Swing canvases (source folder separation but jzy3d-api build)
  • jzy3d-swt : provides a wrapper on AWT canvas to embed a chart in a SWT application.
  • jzy3d-javafx : render in Java FX applications.
  • jzy3d-jdt-core : a clone of JDT, for Java Delaunay Triangulation
  • jzy3d-svm-mapper : fit a surface out of set of points using an SVM regression model
  • jzy3d-tools-libsvm : a wrapper on LibSVM

Additional modules kept separated demonstrate side works on Jzy3d

Jzy3d Maven Repository

  • To add Jzy3d to your project

    release

    
    <dependency>
      <groupId>org.jzy3d</groupId>
      <artifactId>jzy3d-api</artifactId>
      <version>1.0.0</version>
    </dependency>
    
    

snapshot

  
  <dependency>
    <groupId>org.jzy3d</groupId>
    <artifactId>jzy3d-api</artifactId>
    <version>1.0.1-SNAPSHOT</version>
  </dependency>
  
  
  • Maven artifacts are stored there:
    
    <repositories>
      <repository>
    	 <id>jzy3d-snapshots</id>
    	 <name>Jzy3d Snapshots</name>
    	 <url>http://maven.jzy3d.org/snapshots </url>
      </repository>
      <repository>
    	 <id>jzy3d-releases</id>
    	 <name>Jzy3d Releases</name>
    	 <url>http://maven.jzy3d.org/releases </url>
      </repository>
    </repositories>
    
    

Building the projects with Maven

Build all module from master repository by calling

  • mvn install

To be friendly with Eclipse-but-non-Maven users, we add .project and .classpath files to the repositories. If you want to regenerate this files with maven and have the projects linked all together, simply run

  • mvn eclipse:eclipse -Declipse.workspace=~[your current eclipse workspace folder]
  • then edit jzy3d-api project properties to export all dependencies to other projects (Properties > Java Build Path > Order and Export > Select All. Then remove JRE System libraries).

Building the projects without Maven

We kept the repository easy to use for non-maven users.

  • Eclipse project files (.project & .classpath) with inter-project relations are commited to the repositories
  • Some modules have a lib/ directory containing required Jars. If you want to use these jars, simply edit the libraries dependencies of the Eclipse project to use them instead of the maven dependencies.

License

New BSD

More information

http://www.jzy3d.org