change the project name to something silly

This commit is contained in:
Eliot Jones
2018-01-10 19:49:32 +00:00
parent ab5a357665
commit ec62542b64
485 changed files with 946 additions and 784 deletions

View File

@@ -0,0 +1,28 @@
namespace UglyToad.PdfPig.Graphics.Operations.PathConstruction
{
using Content;
using Geometry;
internal class AppendStraightLineSegment : IGraphicsStateOperation
{
public const string Symbol = "l";
public string Operator => Symbol;
public PdfPoint End { get; }
public AppendStraightLineSegment(decimal x, decimal y)
{
End = new PdfPoint(x, y);
}
public void Run(IOperationContext operationContext, IResourceStore resourceStore)
{
}
public override string ToString()
{
return $"{End.X} {End.Y} {Symbol}";
}
}
}