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";
/// <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();

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -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
{

View File

@@ -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.