Home
last modified time | relevance | path

Searched refs:y2 (Results 1 – 7 of 7) sorted by relevance

/webtrees/app/Report/
H A DReportBaseLine.php39 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 DReportHtmlLine.php45 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 DReportPdfLine.php45 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 DPdfRenderer.php536 * @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 DHtmlRenderer.php353 * @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 DAbstractRenderer.php265 * @param float $y2
269 abstract public function createLine(float $x1, float $y1, float $x2, float $y2): ReportBaseLine; argument
H A DReportParserGenerate.php1848 $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);