mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-24 10:17:39 +00:00
Added Vector.dot(Vector).
This commit is contained in:
parent
274ecaadf2
commit
a5a761a126
@ -612,6 +612,16 @@ public class Vector {
|
|||||||
return new BlockVector(this);
|
return new BlockVector(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the dot product of this and another vector.
|
||||||
|
*
|
||||||
|
* @param other
|
||||||
|
* @return the dot product of this and the other vector
|
||||||
|
*/
|
||||||
|
public double dot(Vector other) {
|
||||||
|
return x * other.x + y * other.y + z * other.z;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the minimum components of two vectors.
|
* Gets the minimum components of two vectors.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user