芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/store.kwesioben.com/vendor/setasign/fpdi/src/Math/Matrix.php
a = (float)$a; $this->b = (float)$b; $this->c = (float)$c; $this->d = (float)$d; $this->e = (float)$e; $this->f = (float)$f; } /** * @return float[] */ public function getValues() { return [$this->a, $this->b, $this->c, $this->d, $this->e, $this->f]; } /** * @param Matrix $by * @return Matrix */ public function multiply(self $by) { $a = $this->a * $by->a + $this->b * $by->c //+ 0 * $by->e ; $b = $this->a * $by->b + $this->b * $by->d //+ 0 * $by->f ; $c = $this->c * $by->a + $this->d * $by->c //+ 0 * $by->e ; $d = $this->c * $by->b + $this->d * $by->d //+ 0 * $by->f ; $e = $this->e * $by->a + $this->f * $by->c + /*1 * */$by->e; $f = $this->e * $by->b + $this->f * $by->d + /*1 * */$by->f; return new self($a, $b, $c, $d, $e, $f); } }