mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 17:59:48 +00:00
Math: Fix typo in Matrix->subtract() name
This commit is contained in:
@ -103,7 +103,7 @@ class Matrix implements \ArrayAccess{
|
|||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function substract(Matrix $matrix){
|
public function subtract(Matrix $matrix){
|
||||||
if($this->rows !== $matrix->getRows() or $this->columns !== $matrix->getColumns()){
|
if($this->rows !== $matrix->getRows() or $this->columns !== $matrix->getColumns()){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user