#+TITLE: Sixth 3D - 3D engine ----- - This is a subproject of [[http://www2.svjatoslav.eu/gitbrowse/sixth/doc/index.html][Sixth]] - [[http://www2.svjatoslav.eu/gitweb/?p=sixth-3d.git;a=snapshot;h=HEAD;sf=tgz][download latest snapshot]] - This program is free software; you can redistribute it and/or modify it under the terms of version 3 of the [[https://www.gnu.org/licenses/lgpl.html][GNU Lesser General Public License]] or later as published by the Free Software Foundation. - Program author: - Svjatoslav Agejenko - Homepage: http://svjatoslav.eu - Email: mailto://svjatoslav@svjatoslav.eu - [[http://svjatoslav.eu/programs.jsp][other applications hosted at svjatoslav.eu]] * Project description In software, pure Java realtime 3D rendering engine. With the final goal of becoming a platform for buildng 3D user interfaces. + See: [[http://www2.svjatoslav.eu/gitbrowse/sixth-3d-demos/doc/index.html][demos of current 3D engine capabilities]] System is implemented in Java because: - It scales well to handle great complexity. - It is easy to refactor and experiment with. - It is fast enough thanks to Java virtual machine just-in-time compiler. - Easy to run on various hardware platforms and operating systems. 3D rendering is done in software, 100% pure Java on CPU. At least for now. Modern CPU cores count keeps growing and therefore rendering by CPU is not as expensive as it used to be for the old single core systems. CPU rendering performance is already good enough to implement usable 3D UI at sufficient detail level, resolution and frame rate. Pure Java also means easy portability and installation. No need to deal with platform specific dependencies. Also CPU rendering allows to easily test different rendering algorithms and retains complete control of every rendered pixel. * Software development Instructions to embed Sixth-3D in your project as a library. Maven *pom.xml* file snippet: #+BEGIN_SRC xml ... eu.svjatoslav sixth-3d 1.0 ... ... svjatoslav.eu Svjatoslav repository http://www2.svjatoslav.eu/maven/ ... #+END_SRC [[http://www2.svjatoslav.eu/projects/sixth/codegraphs/][Auto-generated graphs for parts of Sixth-3D code/architecture]] using [[http://www2.svjatoslav.eu/gitbrowse/javainspect/doc/index.html][this tool]]