diff --git a/engine/src/core/com/jme3/math/Triangle.java b/engine/src/core/com/jme3/math/Triangle.java index 5e04ec5a8..6faa53e53 100644 --- a/engine/src/core/com/jme3/math/Triangle.java +++ b/engine/src/core/com/jme3/math/Triangle.java @@ -37,8 +37,8 @@ import com.jme3.export.Savable; import java.io.IOException; /** - * Triangle defines a object for containing triangle information. - * The triangle is defined by a collection of three Vector3f + * Triangle defines an object for containing triangle information. + * The triangle is defined by a collection of three {@link Vector3f} * objects. * * @author Mark Powell @@ -108,7 +108,7 @@ public class Triangle extends AbstractTriangle implements Savable, java.io.Seria /** * - * set sets one of the triangles points to that specified as + * set sets one of the triangle's points to that specified as * a parameter. * @param i the index to place the point. * @param point the point to set. @@ -129,7 +129,7 @@ public class Triangle extends AbstractTriangle implements Savable, java.io.Seria /** * - * set sets one of the triangles points to that specified as + * set sets one of the triangle's points to that specified as * a parameter. * @param i the index to place the point. */ @@ -179,7 +179,7 @@ public class Triangle extends AbstractTriangle implements Savable, java.io.Seria } /** - * calculateCenter finds the average point of the triangle. + * calculateNormal generates the normal for this triangle * */ public void calculateNormal() {