using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FastReport.Export.Hpgl.Commands
{
///
/// PR command
///
public class PlotRelative : CommandBase
{
public PlotRelative(float x, float y) : base()
{
Name = "PR";
Parameters.Add(x);
Parameters.Add(y);
}
}
}