Many javadoc fixes thanks to Celtic Minstrel
This commit is contained in:
@@ -21,6 +21,7 @@ public class BlockVector extends Vector {
|
||||
|
||||
/**
|
||||
* Construct the vector with another vector.
|
||||
* @param vec The other vector.
|
||||
*/
|
||||
public BlockVector(Vector vec) {
|
||||
this.x = vec.getX();
|
||||
@@ -31,9 +32,9 @@ public class BlockVector extends Vector {
|
||||
/**
|
||||
* Construct the vector with provided integer components.
|
||||
*
|
||||
* @param x
|
||||
* @param y
|
||||
* @param z
|
||||
* @param x X component
|
||||
* @param y Y component
|
||||
* @param z Z component
|
||||
*/
|
||||
public BlockVector(int x, int y, int z) {
|
||||
this.x = x;
|
||||
@@ -44,9 +45,9 @@ public class BlockVector extends Vector {
|
||||
/**
|
||||
* Construct the vector with provided double components.
|
||||
*
|
||||
* @param x
|
||||
* @param y
|
||||
* @param z
|
||||
* @param x X component
|
||||
* @param y Y component
|
||||
* @param z Z component
|
||||
*/
|
||||
public BlockVector(double x, double y, double z) {
|
||||
this.x = x;
|
||||
@@ -57,9 +58,9 @@ public class BlockVector extends Vector {
|
||||
/**
|
||||
* Construct the vector with provided float components.
|
||||
*
|
||||
* @param x
|
||||
* @param y
|
||||
* @param z
|
||||
* @param x X component
|
||||
* @param y Y component
|
||||
* @param z Z component
|
||||
*/
|
||||
public BlockVector(float x, float y, float z) {
|
||||
this.x = x;
|
||||
@@ -70,7 +71,7 @@ public class BlockVector extends Vector {
|
||||
/**
|
||||
* Checks if another object is equivalent.
|
||||
*
|
||||
* @param obj
|
||||
* @param obj The other object
|
||||
* @return whether the other object is equivalent
|
||||
*/
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user