Home
last modified time | relevance | path

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

/webtrees/app/Report/
H A DReportHtmlLine.php39 if ($this->y1 === ReportBaseElement::CURRENT_POSITION) {
40 $this->y1 = $renderer->getY();
50 …erer->alignRTL, ':', $this->x1, 'pt;top:', $this->y1 + 1, 'pt;width:1pt;height:', $this->y2 - $thi…
53 if ($this->y1 === $this->y2) {
54 …:solid black 1pt;', $renderer->alignRTL, ':', $this->x1, 'pt;top:', $this->y1 + 1, 'pt;width:', $t…
58 $renderer->addMaxY($this->y1);
H A DReportBaseLine.php33 public float $y1 = ReportBaseElement::CURRENT_POSITION; variable in Fisharebest\\Webtrees\\Report\\ReportBaseLine
45 * @param float $y1
49 public function __construct(float $x1, float $y1, float $x2, float $y2) argument
52 $this->y1 = $y1;
66 return abs($this->y2 - $this->y1);
H A DReportPdfLine.php39 if ($this->y1 === ReportBaseElement::CURRENT_POSITION) {
40 $this->y1 = $renderer->tcpdf->GetY();
49 …$renderer->tcpdf->Line($renderer->tcpdf->getPageWidth() - $this->x1, $this->y1, $renderer->tcpdf->…
51 $renderer->tcpdf->Line($this->x1, $this->y1, $this->x2, $this->y2);
H A DPdfRenderer.php534 * @param float $y1
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.php351 * @param float $y1
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.php263 * @param float $y1
269 abstract public function createLine(float $x1, float $y1, float $x2, float $y2): ReportBaseLine; argument
H A DReportParserGenerate.php1826 $y1 = ReportBaseElement::CURRENT_POSITION;
1829 $y1 = 0;
1831 $y1 = ReportBaseElement::CURRENT_POSITION;
1833 $y1 = (float) $attrs['y1'];
1859 $line = $this->report_root->createLine($x1, $y1, $x2, $y2);