First commit.
This commit is contained in:
42
Source/OpenNest.Core/CNC/RapidMove.cs
Normal file
42
Source/OpenNest.Core/CNC/RapidMove.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
|
||||
namespace OpenNest.CNC
|
||||
{
|
||||
public class RapidMove : Motion
|
||||
{
|
||||
public RapidMove()
|
||||
{
|
||||
Feedrate = CNC.Feedrate.UseMax;
|
||||
}
|
||||
|
||||
public RapidMove(Vector endPoint)
|
||||
{
|
||||
EndPoint = endPoint;
|
||||
}
|
||||
|
||||
public RapidMove(double x, double y)
|
||||
{
|
||||
EndPoint = new Vector(x, y);
|
||||
}
|
||||
|
||||
public override CodeType Type
|
||||
{
|
||||
get { return CodeType.RapidMove; }
|
||||
}
|
||||
|
||||
public override ICode Clone()
|
||||
{
|
||||
return new RapidMove(EndPoint);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return ToString(DefaultDecimalPlaces);
|
||||
}
|
||||
|
||||
public override string ToString(int decimalPlaces)
|
||||
{
|
||||
var dp = "N" + decimalPlaces;
|
||||
return string.Format("G00 X{0} Y{1}", EndPoint.X.ToString(dp), EndPoint.Y.ToString(dp));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user