Skip to content
Snippets Groups Projects
TimePoint.php 230 B
<?php
namespace App;

/**
 * Description of Point
 *
 * @author tibo
 */
class TimePoint
{
    public $t = 0;
    public $y = 0;

    public function __construct($t, $y)
    {
        $this->t = $t;
        $this->y = $y;
    }
}