emerald-extension / cn.berberman.emerald.extension / org.bukkit.util.Vector
Extensions for org.bukkit.util.Vector
| div | operator fun Vector.div(vector: Vector): VectorDivides the vector by another. |
| get | operator fun Vector.get(axis3D: Axis3D): DoubleGet a one-dimension value from this vector. |
| minus | operator fun Vector.minus(vector: Vector): VectorSubtracts a vector from this one. |
| plus | operator fun Vector.plus(vector: Vector): VectorAdds a vector to this one |
| set | operator fun Vector.set(axis3D: Axis3D, double: Double): UnitSet a one-dimension value to this vector. |
| times | operator fun Vector.times(vector: Vector): VectorMultiplies the vector by another. operator fun Vector.times(double: Double): VectorPerforms scalar multiplication, multiplying all components with a scalar. |