Added more Vector math

This commit is contained in:
Shoghi Cervantes 2013-06-10 17:10:49 +02:00
parent 4284211bd1
commit 808f5473d0
3 changed files with 50 additions and 0 deletions

View File

@ -87,6 +87,14 @@ class Vector2{
return new Vector2(abs($this->x), abs($this->y));
}
public function multiply($number){
return new Vector2($this->x * $number, $this->y * $number);
}
public function divide($number){
return new Vector2($this->x / $number, $this->y / $number);
}
public function distance($x = 0, $y = 0){
if(($x instanceof Vector2) === true){
return sqrt($this->distanceSquared($x->x, $x->y));

View File

@ -98,6 +98,14 @@ class Vector3{
}
}
public function multiply($number){
return new Vector3($this->x * $number, $this->y * $number, $this->z * $number);
}
public function divide($number){
return new Vector3($this->x / $number, $this->y / $number, $this->z / $number);
}
public function ceil(){
return new Vector3((int) ($this->x + 1), (int) ($this->y + 1), (int) ($this->z + 1));
}

34
src/math/VectorMath.php Normal file
View File

@ -0,0 +1,34 @@
<?php
/*
-
/ \
/ \
/ PocketMine \
/ MP \
|\ @shoghicp /|
|. \ / .|
| .. \ / .. |
| .. | .. |
| .. | .. |
\ | /
\ | /
\ | /
\ | /
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
*/
class VectorMath{
public static function getDirection2D($azimuth){
return new Vector2(cos($azimuth), sin($azimuth));
}
}