Updated readability of the code.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / geometry / Circle.java
1 /*
2  * Sixth 3D engine. Author: Svjatoslav Agejenko.
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5 package eu.svjatoslav.sixth.e3d.geometry;
6
7 /**
8  * Circle in 2D space.
9  */
10 public class Circle {
11
12     /**
13      * The center of the circle.
14      */
15     Point2D location;
16
17     /**
18      * The radius of the circle.
19      */
20     double radius;
21
22 }