|
| 1 | +#tracers.java |
| 2 | + |
| 3 | +>`tracers.java` is a visualization library for Java. |
| 4 | +
|
| 5 | +This repository is part of the project[Algorithm Visualizer](https://github.com/algorithm-visualizer). |
| 6 | + |
| 7 | +##Installation |
| 8 | + |
| 9 | +1. Download`algorithm-visualizer.jar` in the[latest release](https://github.com/algorithm-visualizer/tracers.java/releases/latest). |
| 10 | + |
| 11 | +2. Add it to the classpath. |
| 12 | + |
| 13 | +##Usage |
| 14 | + |
| 15 | +```java |
| 16 | +importorg.algorithm_visualizer.*; |
| 17 | + |
| 18 | +classMain { |
| 19 | +publicstaticvoidmain(String[]args) { |
| 20 | +LogTracer logTracer=newLogTracer("Scratch Paper"); |
| 21 | + |
| 22 | + logTracer.print("Visualize your own algorithm here!"); |
| 23 | + } |
| 24 | +} |
| 25 | +``` |
| 26 | + |
| 27 | +Check out the[API reference](https://github.com/algorithm-visualizer/algorithm-visualizer/wiki) for more information. |
| 28 | + |
| 29 | +##Contributing |
| 30 | + |
| 31 | +Check out the[contributing guidelines](https://github.com/algorithm-visualizer/tracers.java/blob/master/CONTRIBUTING.md). |