From 83ef10ec224949a0e038c37055a485aa917ca965 Mon Sep 17 00:00:00 2001 From: BobLd Date: Thu, 2 Apr 2020 16:42:42 +0100 Subject: [PATCH] Add Clipping helper class. Does nothing for the moment --- src/UglyToad.PdfPig/Geometry/Clipping.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/UglyToad.PdfPig/Geometry/Clipping.cs diff --git a/src/UglyToad.PdfPig/Geometry/Clipping.cs b/src/UglyToad.PdfPig/Geometry/Clipping.cs new file mode 100644 index 00000000..47606886 --- /dev/null +++ b/src/UglyToad.PdfPig/Geometry/Clipping.cs @@ -0,0 +1,23 @@ +namespace UglyToad.PdfPig.Geometry +{ + using UglyToad.PdfPig.Graphics; + + /// + /// + /// + public static class Clipping + { + const double factor = 10_000.0; + + /// + /// DOES NOTHING + /// + /// + /// + /// + public static PdfPath Clip(this PdfPath clipping, PdfPath subject) + { + return subject; + } + } +}