Skip to content

Getting started

KTracer is a Kotlin library that provides a simple tool for Ray Tracing. Learn how to use it in 5 minutes and begin to have fun, freeing your creativity!

Installation

binary

You can download the latest stable binary distribution here.

with git

You may also want to clone the repository, in order to have all the latest updates. KTracer is built on gradle, so its installation is required for this installation procedure. You can install it here.

If you have gradle installed, just run the command:

git clone git@github.com:AnnaPivetta/KTracer.git

When cloning from git, we recommend testing the success of the download with:

./gradlew test

If everything is fine, you can build your own distribution with:

./gradlew assembleDist
Back to top