Files
PdfPig/src/UglyToad.PdfPig/Graphics/Operations/PathConstruction/AppendStraightLineSegment.cs

34 lines
798 B
C#
Raw Normal View History

namespace UglyToad.PdfPig.Graphics.Operations.PathConstruction
{
using System.IO;
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 void Write(Stream stream)
{
throw new System.NotImplementedException();
}
public override string ToString()
{
return $"{End.X} {End.Y} {Symbol}";
}
}
}