mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-10-14 10:55:04 +08:00
Move Path-Painting Operators to PathPainting folder
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
public const string Symbol = "W";
|
||||
|
||||
/// <summary>
|
||||
/// The instance of the <see cref="EndPath"/> operation.
|
||||
/// The instance of the <see cref="ModifyClippingByNonZeroWindingIntersect"/> operation.
|
||||
/// </summary>
|
||||
public static readonly ModifyClippingByNonZeroWindingIntersect Value = new ModifyClippingByNonZeroWindingIntersect();
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
namespace UglyToad.PdfPig.Graphics.Operations
|
||||
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||
{
|
||||
using System.IO;
|
||||
|
@@ -2,10 +2,6 @@ using UglyToad.PdfPig.Tokenization;
|
||||
|
||||
namespace UglyToad.PdfPig.Graphics
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using Operations;
|
||||
using Operations.ClippingPaths;
|
||||
using Operations.Compatibility;
|
||||
@@ -19,7 +15,12 @@ namespace UglyToad.PdfPig.Graphics
|
||||
using Operations.TextShowing;
|
||||
using Operations.TextState;
|
||||
using PdfPig.Core;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using Tokens;
|
||||
using UglyToad.PdfPig.Graphics.Operations.PathPainting;
|
||||
|
||||
internal class ReflectionGraphicsStateOperationFactory : IGraphicsStateOperationFactory
|
||||
{
|
||||
|
@@ -1,8 +1,5 @@
|
||||
namespace UglyToad.PdfPig.Writer
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Content;
|
||||
using Core;
|
||||
using Fonts;
|
||||
@@ -16,7 +13,11 @@
|
||||
using Graphics.Operations.TextShowing;
|
||||
using Graphics.Operations.TextState;
|
||||
using Images;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Tokens;
|
||||
using UglyToad.PdfPig.Graphics.Operations.PathPainting;
|
||||
|
||||
/// <summary>
|
||||
/// A builder used to add construct a page in a PDF document.
|
||||
|
Reference in New Issue
Block a user