Javadoc fixes for com.jme3.math.Triangle

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8517 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
sky..ok 13 years ago
parent 18ce27faae
commit dae6ef534b
  1. 10
      engine/src/core/com/jme3/math/Triangle.java

@ -37,8 +37,8 @@ import com.jme3.export.Savable;
import java.io.IOException; import java.io.IOException;
/** /**
* <code>Triangle</code> defines a object for containing triangle information. * <code>Triangle</code> defines an object for containing triangle information.
* The triangle is defined by a collection of three <code>Vector3f</code> * The triangle is defined by a collection of three {@link Vector3f}
* objects. * objects.
* *
* @author Mark Powell * @author Mark Powell
@ -108,7 +108,7 @@ public class Triangle extends AbstractTriangle implements Savable, java.io.Seria
/** /**
* *
* <code>set</code> sets one of the triangles points to that specified as * <code>set</code> sets one of the triangle's points to that specified as
* a parameter. * a parameter.
* @param i the index to place the point. * @param i the index to place the point.
* @param point the point to set. * @param point the point to set.
@ -129,7 +129,7 @@ public class Triangle extends AbstractTriangle implements Savable, java.io.Seria
/** /**
* *
* <code>set</code> sets one of the triangles points to that specified as * <code>set</code> sets one of the triangle's points to that specified as
* a parameter. * a parameter.
* @param i the index to place the point. * @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() { public void calculateNormal() {

Loading…
Cancel
Save