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