Searched refs:y2 (Results 1 – 7 of 7) sorted by relevance
/webtrees/app/Report/ |
H A D | ReportBaseLine.php | 39 public float $y2 = ReportBaseElement::CURRENT_POSITION; variable in Fisharebest\\Webtrees\\Report\\ReportBaseLine 47 * @param float $y2 49 public function __construct(float $x1, float $y1, float $x2, float $y2) argument 54 $this->y2 = $y2; 66 return abs($this->y2 - $this->y1);
|
H A D | ReportHtmlLine.php | 45 if ($this->y2 === ReportBaseElement::CURRENT_POSITION) { 46 $this->y2 = $renderer->getY(); 50 …, ':', $this->x1, 'pt;top:', $this->y1 + 1, 'pt;width:1pt;height:', $this->y2 - $this->y1, "pt;\">… 53 if ($this->y1 === $this->y2) { 59 $renderer->addMaxY($this->y2);
|
H A D | ReportPdfLine.php | 45 if ($this->y2 === ReportBaseElement::CURRENT_POSITION) { 46 $this->y2 = $renderer->tcpdf->GetY(); 49 …f->getPageWidth() - $this->x1, $this->y1, $renderer->tcpdf->getPageWidth() - $this->x2, $this->y2); 51 $renderer->tcpdf->Line($this->x1, $this->y1, $this->x2, $this->y2);
|
H A D | PdfRenderer.php | 536 * @param float $y2 540 public function createLine(float $x1, float $y1, float $x2, float $y2): ReportBaseLine argument 542 return new ReportPdfLine($x1, $y1, $x2, $y2);
|
H A D | HtmlRenderer.php | 353 * @param float $y2 357 public function createLine(float $x1, float $y1, float $x2, float $y2): ReportBaseLine argument 359 return new ReportHtmlLine($x1, $y1, $x2, $y2);
|
H A D | AbstractRenderer.php | 265 * @param float $y2 269 abstract public function createLine(float $x1, float $y1, float $x2, float $y2): ReportBaseLine; argument
|
H A D | ReportParserGenerate.php | 1848 $y2 = ReportBaseElement::CURRENT_POSITION; 1851 $y2 = 0; 1853 $y2 = ReportBaseElement::CURRENT_POSITION; 1855 $y2 = (float) $attrs['y2']; 1859 $line = $this->report_root->createLine($x1, $y1, $x2, $y2);
|