Browse Source

Removing common namespace.

af/merge-core
Olivia 9 years ago
parent
commit
8d689c9f2c
  1. 1
      src/ImageSharp/Colors/ColorspaceTransforms.cs
  2. 1
      src/ImageSharp/Colors/Spaces/CieLab.cs
  3. 1
      src/ImageSharp/Colors/Spaces/CieXyz.cs
  4. 1
      src/ImageSharp/Colors/Spaces/Cmyk.cs
  5. 1
      src/ImageSharp/Colors/Spaces/Hsl.cs
  6. 1
      src/ImageSharp/Colors/Spaces/Hsv.cs
  7. 1
      src/ImageSharp/Colors/Vector4BlendTransforms.cs
  8. 2
      src/ImageSharp/Common/Constants.cs
  9. 1
      src/ImageSharp/Common/Helpers/ImageMaths.cs
  10. 1
      src/ImageSharp/Drawing/Processors/DrawPathProcessor.cs
  11. 1
      src/ImageSharp/Drawing/Processors/FillShapeProcessor.cs
  12. 1
      src/ImageSharp/Filters/Processors/Effects/BackgroundColorProcessor.cs
  13. 1
      src/ImageSharp/Filters/Processors/Transforms/RotateProcessor.cs
  14. 1
      src/ImageSharp/Quantizers/Wu/WuQuantizer.cs
  15. 1
      tests/ImageSharp.Tests/Common/ConstantsTests.cs

1
src/ImageSharp/Colors/ColorspaceTransforms.cs

@ -8,7 +8,6 @@ namespace ImageSharp
using System;
using System.Numerics;
using Colors.Spaces;
using Common;
/// <summary>
/// Packed vector type containing four 8-bit unsigned normalized values ranging from 0 to 255.

1
src/ImageSharp/Colors/Spaces/CieLab.cs

@ -8,7 +8,6 @@ namespace ImageSharp.Colors.Spaces
using System;
using System.ComponentModel;
using System.Numerics;
using Common;
/// <summary>
/// Represents an CIE LAB 1976 color.

1
src/ImageSharp/Colors/Spaces/CieXyz.cs

@ -8,7 +8,6 @@ namespace ImageSharp.Colors.Spaces
using System;
using System.ComponentModel;
using System.Numerics;
using Common;
/// <summary>
/// Represents an CIE 1931 color

1
src/ImageSharp/Colors/Spaces/Cmyk.cs

@ -8,7 +8,6 @@ namespace ImageSharp.Colors.Spaces
using System;
using System.ComponentModel;
using System.Numerics;
using Common;
/// <summary>
/// Represents an CMYK (cyan, magenta, yellow, keyline) color.

1
src/ImageSharp/Colors/Spaces/Hsl.cs

@ -8,7 +8,6 @@ namespace ImageSharp.Colors.Spaces
using System;
using System.ComponentModel;
using System.Numerics;
using Common;
/// <summary>
/// Represents a Hsl (hue, saturation, lightness) color.

1
src/ImageSharp/Colors/Spaces/Hsv.cs

@ -8,7 +8,6 @@ namespace ImageSharp.Colors.Spaces
using System;
using System.ComponentModel;
using System.Numerics;
using Common;
/// <summary>
/// Represents a HSV (hue, saturation, value) color. Also known as HSB (hue, saturation, brightness).

1
src/ImageSharp/Colors/Vector4BlendTransforms.cs

@ -7,7 +7,6 @@ namespace ImageSharp
{
using System;
using System.Numerics;
using Common;
/// <summary>
/// Transform algorithms that match the equations defined in the W3C Compositing and Blending Level 1 specification.

2
src/ImageSharp/Common/Constants.cs

@ -3,7 +3,7 @@
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageSharp.Common
namespace ImageSharp
{
/// <summary>
/// Common constants used throughout the project

1
src/ImageSharp/Common/Helpers/ImageMaths.cs

@ -8,7 +8,6 @@ namespace ImageSharp
using System;
using System.Linq;
using System.Numerics;
using Common;
/// <summary>
/// Provides common mathematical methods.

1
src/ImageSharp/Drawing/Processors/DrawPathProcessor.cs

@ -9,7 +9,6 @@ namespace ImageSharp.Drawing.Processors
using System.Linq;
using System.Numerics;
using System.Threading.Tasks;
using Common;
using ImageSharp.Processors;
using Paths;
using Pens;

1
src/ImageSharp/Drawing/Processors/FillShapeProcessor.cs

@ -8,7 +8,6 @@ namespace ImageSharp.Drawing.Processors
using System;
using System.Numerics;
using System.Threading.Tasks;
using Common;
using Drawing;
using ImageSharp.Processors;
using Shapes;

1
src/ImageSharp/Filters/Processors/Effects/BackgroundColorProcessor.cs

@ -8,7 +8,6 @@ namespace ImageSharp.Processors
using System;
using System.Numerics;
using System.Threading.Tasks;
using Common;
/// <summary>
/// Sets the background color of the image.

1
src/ImageSharp/Filters/Processors/Transforms/RotateProcessor.cs

@ -8,7 +8,6 @@ namespace ImageSharp.Processors
using System;
using System.Numerics;
using System.Threading.Tasks;
using Common;
/// <summary>
/// Provides methods that allow the rotating of images.

1
src/ImageSharp/Quantizers/Wu/WuQuantizer.cs

@ -9,7 +9,6 @@ namespace ImageSharp.Quantizers
using System.Buffers;
using System.Numerics;
using System.Threading.Tasks;
using Common;
/// <summary>
/// An implementation of Wu's color quantizer with alpha channel.

1
tests/ImageSharp.Tests/Common/ConstantsTests.cs

@ -5,7 +5,6 @@
namespace ImageSharp.Tests.Common
{
using ImageSharp.Common;
using Xunit;
public class ConstantsTests

Loading…
Cancel
Save