X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fgeometry%2FPoint3D.java;h=120ea323ac139c27db1d932dc1fae8941d0800d4;hp=6bf2dd3f45b4ea08191cf70167ef85a5c7a99086;hb=a3ff3683bd0a025061667b26b6fcf56fe20f0afc;hpb=3f589bbc56ebfb1bd35b538b8a77d4019396b5aa diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/geometry/Point3D.java b/src/main/java/eu/svjatoslav/sixth/e3d/geometry/Point3D.java index 6bf2dd3..120ea32 100755 --- a/src/main/java/eu/svjatoslav/sixth/e3d/geometry/Point3D.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/geometry/Point3D.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; @@ -60,9 +60,10 @@ public class Point3D implements Cloneable { /** * Add coordinates of current point to other point. Value of current point will not be changed. + * * @return current point. */ - public Point3D addTo(final Point3D ... otherPoints) { + public Point3D addTo(final Point3D... otherPoints) { for (final Point3D otherPoint : otherPoints) otherPoint.add(this); return this; } @@ -157,12 +158,12 @@ public class Point3D implements Cloneable { *

* See also: Let's remove Quaternions from every 3D Engine * - * @param center center point. + * @param center center point. * @param angleXZ angle around XZ axis. * @param angleYZ angle around YZ axis. */ public Point3D rotate(final Point3D center, final double angleXZ, - final double angleYZ) { + final double angleYZ) { final double s1 = sin(angleXZ); final double c1 = cos(angleXZ); @@ -229,6 +230,7 @@ public class Point3D implements Cloneable { /** * Set current point coordinates to given values. + * * @param x X coordinate. * @param y Y coordinate. * @param z Z coordinate.