2D/3D visualization for Java
<dependency> <groupId>com.github.casmi</groupId> <artifactId>casmi</artifactId> <version>0.4.0</version> </dependency>
casmi is a visualization library for Java.
casmi supports 2D/3D realtime rendering based on OpenGL.
With assembling graphics primitives (line, circle, sphere, etc.), you can easily design scene layouts.
Smooth tween animations and scene sequencing functions add rich UI/UX on your application.
Getting Started
1. Create a project
We recommend to use Apache Maven.
Maven Archetype
Run the following command
mvn archetype:generate -Dfilter=com.github.casmi.archetypes:casmi-quickstart
Maven will prompt you for a archetype, a group id, an artifact id, a version number and package.
Quickstart project
You can download quickstart project template from download page or git repository.
2. Build
Change to the your project directory and execute:
mvn compile
3. Run
To run, execute the following (Required to specify the main class of your project)
mvn exec:java -Dexec.mainClass="yourPackageName.App"
4. What's next?
Take a tour.