X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fgeometry%2FPoint2D.java;h=a6bb6a173929d1c1b9dc81c4b6ce8b4eeb910a6e;hp=c27204771db8cb445c1f37aec3dc13ac54cb3a44;hb=f3da0bbe2c31d899156d410f8e75dabb0255efdf;hpb=3e2b906bd05617a4d9725de39ac14c9ea1f8736c diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/geometry/Point2D.java b/src/main/java/eu/svjatoslav/sixth/e3d/geometry/Point2D.java index c272047..a6bb6a1 100755 --- a/src/main/java/eu/svjatoslav/sixth/e3d/geometry/Point2D.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/geometry/Point2D.java @@ -1,5 +1,5 @@ /* - * Sixth 3D engine. Author: Svjatoslav Agejenko. + * Sixth 3D engine. Author: Svjatoslav Agejenko. * This project is released under Creative Commons Zero (CC0) license. */ package eu.svjatoslav.sixth.e3d.geometry; @@ -8,6 +8,8 @@ import static java.lang.Math.sqrt; /** * Used to represent point in a 2D space or vector. + * + * @see Point3D */ public class Point2D implements Cloneable { @@ -90,6 +92,7 @@ public class Point2D implements Cloneable { /** * Calculate length of vector. + * * @return length of vector. */ public double getVectorLength() {