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; + } + } +}