!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/public_html/phpmyadmin/vendor/bacon/bacon-qr-code/src/Renderer/Image/   drwxr-xr-x
Free 28.1 GB of 117.98 GB (23.82%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     TransformationMatrix.php (1.99 KB)      -rwxr-x---
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
declare(strict_types 1);

namespace 
BaconQrCode\Renderer\Image;

final class 
TransformationMatrix
{
    
/**
     * @var float[]
     */
    
private $values;

    public function 
__construct()
    {
        
$this->values = [100100];
    }

    public function 
multiply(self $other) : self
    
{
        
$matrix = new self();
        
$matrix->values[0] = $this->values[0] * $other->values[0] + $this->values[2] * $other->values[1];
        
$matrix->values[1] = $this->values[1] * $other->values[0] + $this->values[3] * $other->values[1];
        
$matrix->values[2] = $this->values[0] * $other->values[2] + $this->values[2] * $other->values[3];
        
$matrix->values[3] = $this->values[1] * $other->values[2] + $this->values[3] * $other->values[3];
        
$matrix->values[4] = $this->values[0] * $other->values[4] + $this->values[2] * $other->values[5]
            + 
$this->values[4];
        
$matrix->values[5] = $this->values[1] * $other->values[4] + $this->values[3] * $other->values[5]
            + 
$this->values[5];

        return 
$matrix;
    }

    public static function 
scale(float $size) : self
    
{
        
$matrix = new self();
        
$matrix->values = [$size00$size00];
        return 
$matrix;
    }

    public static function 
translate(float $xfloat $y) : self
    
{
        
$matrix = new self();
        
$matrix->values = [1001$x$y];
        return 
$matrix;
    }

    public static function 
rotate(int $degrees) : self
    
{
        
$matrix = new self();
        
$rad deg2rad($degrees);
        
$matrix->values = [cos($rad), sin($rad), -sin($rad), cos($rad), 00];
        return 
$matrix;
    }


    
/**
     * Applies this matrix onto a point and returns the resulting viewport point.
     *
     * @return float[]
     */
    
public function apply(float $xfloat $y) : array
    {
        return [
            
$x $this->values[0] + $y $this->values[2] + $this->values[4],
            
$x $this->values[1] + $y $this->values[3] + $this->values[5],
        ];
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0032 ]--