Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
DomCR committed Sep 4, 2024
1 parent 6a1e469 commit 72b3212
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ACadSharp.Pdf/PdfExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,6 @@ public void AddPage(Layout layout)
throw new NotImplementedException();
}

public void AddPage(BlockRecord block, PlotSettings settings)
{
throw new NotImplementedException();
}

public void AddPage(BlockRecord block)
{
PdfPage page = this._pdf.AddPage();
Expand All @@ -92,6 +87,11 @@ public void AddPage(BlockRecord block)
updateSize(page, gfx, viewBox);
}

public void AddPage(BlockRecord block, PlotSettings settings)
{
throw new NotImplementedException();
}

public void AddPages(CadDocument document)
{
foreach (Objects.Layout layout in document.Layouts)
Expand Down

0 comments on commit 72b3212

Please sign in to comment.