MCPcopy Create free account
hub / github.com/Kitware/VTK / Fill

Method Fill

IO/ExportPDF/vtkPDFContextDevice2D.cxx:1727–1743  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1725
1726//------------------------------------------------------------------------------
1727void vtkPDFContextDevice2D::Fill(bool stroke)
1728{
1729 if (this->IsInTexturedFill)
1730 {
1731 this->FillTexture();
1732 return;
1733 }
1734
1735 if (stroke)
1736 {
1737 HPDF_Page_FillStroke(this->Impl->Page);
1738 }
1739 else
1740 {
1741 HPDF_Page_Fill(this->Impl->Page);
1742 }
1743}
1744
1745//------------------------------------------------------------------------------
1746void vtkPDFContextDevice2D::FillEvenOdd(bool stroke)

Callers 9

DrawPointsMethod · 0.95
DrawQuadMethod · 0.95
DrawQuadStripMethod · 0.95
DrawPolygonMethod · 0.95
DrawEllipseWedgeMethod · 0.95
DrawEllipticArcMethod · 0.95
DrawSquareMarkersMethod · 0.95
DrawCircleMarkersMethod · 0.95
DrawDiamondMarkersMethod · 0.95

Calls 3

FillTextureMethod · 0.95
HPDF_Page_FillStrokeFunction · 0.85
HPDF_Page_FillFunction · 0.85

Tested by

no test coverage detected