Add Clipping helper class. Does nothing for the moment

This commit is contained in:
BobLd
2020-04-02 16:42:42 +01:00
committed by Eliot Jones
parent 43b40da5d5
commit 83ef10ec22

View File

@@ -0,0 +1,23 @@
namespace UglyToad.PdfPig.Geometry
{
using UglyToad.PdfPig.Graphics;
/// <summary>
///
/// </summary>
public static class Clipping
{
const double factor = 10_000.0;
/// <summary>
/// DOES NOTHING
/// </summary>
/// <param name="clipping"></param>
/// <param name="subject"></param>
/// <returns></returns>
public static PdfPath Clip(this PdfPath clipping, PdfPath subject)
{
return subject;
}
}
}