Move Path-Painting Operators to PathPainting folder

This commit is contained in:
BobLd
2020-04-02 16:33:03 +01:00
committed by Eliot Jones
parent c4a077bbbb
commit 002d8dc06d
13 changed files with 20 additions and 18 deletions

View File

@@ -15,7 +15,7 @@
public const string Symbol = "W"; public const string Symbol = "W";
/// <summary> /// <summary>
/// The instance of the <see cref="EndPath"/> operation. /// The instance of the <see cref="ModifyClippingByNonZeroWindingIntersect"/> operation.
/// </summary> /// </summary>
public static readonly ModifyClippingByNonZeroWindingIntersect Value = new ModifyClippingByNonZeroWindingIntersect(); public static readonly ModifyClippingByNonZeroWindingIntersect Value = new ModifyClippingByNonZeroWindingIntersect();

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
namespace UglyToad.PdfPig.Graphics.Operations namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
{ {
using System.IO; using System.IO;

View File

@@ -2,10 +2,6 @@ using UglyToad.PdfPig.Tokenization;
namespace UglyToad.PdfPig.Graphics namespace UglyToad.PdfPig.Graphics
{ {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Operations; using Operations;
using Operations.ClippingPaths; using Operations.ClippingPaths;
using Operations.Compatibility; using Operations.Compatibility;
@@ -19,7 +15,12 @@ namespace UglyToad.PdfPig.Graphics
using Operations.TextShowing; using Operations.TextShowing;
using Operations.TextState; using Operations.TextState;
using PdfPig.Core; using PdfPig.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Tokens; using Tokens;
using UglyToad.PdfPig.Graphics.Operations.PathPainting;
internal class ReflectionGraphicsStateOperationFactory : IGraphicsStateOperationFactory internal class ReflectionGraphicsStateOperationFactory : IGraphicsStateOperationFactory
{ {

View File

@@ -1,8 +1,5 @@
namespace UglyToad.PdfPig.Writer namespace UglyToad.PdfPig.Writer
{ {
using System;
using System.Collections.Generic;
using System.IO;
using Content; using Content;
using Core; using Core;
using Fonts; using Fonts;
@@ -16,7 +13,11 @@
using Graphics.Operations.TextShowing; using Graphics.Operations.TextShowing;
using Graphics.Operations.TextState; using Graphics.Operations.TextState;
using Images; using Images;
using System;
using System.Collections.Generic;
using System.IO;
using Tokens; using Tokens;
using UglyToad.PdfPig.Graphics.Operations.PathPainting;
/// <summary> /// <summary>
/// A builder used to add construct a page in a PDF document. /// A builder used to add construct a page in a PDF document.