99 lines
988 B
C#
99 lines
988 B
C#
public class RWInput
|
|
{
|
|
private bool firstPoint = true;
|
|
|
|
private bool firstInput = true;
|
|
|
|
private int x1;
|
|
|
|
private int x2;
|
|
|
|
private int y1;
|
|
|
|
private int y2;
|
|
|
|
private int plane1;
|
|
|
|
private int plane2;
|
|
|
|
public bool GetFirstPoint()
|
|
{
|
|
return firstPoint;
|
|
}
|
|
|
|
public void SetFirstPoint(bool val)
|
|
{
|
|
firstPoint = val;
|
|
}
|
|
|
|
public bool GetFirstInput()
|
|
{
|
|
return firstInput;
|
|
}
|
|
|
|
public void SetFirstInput(bool val)
|
|
{
|
|
firstInput = val;
|
|
}
|
|
|
|
public int GetX1()
|
|
{
|
|
return x1;
|
|
}
|
|
|
|
public void SetX1(int x)
|
|
{
|
|
x1 = x;
|
|
}
|
|
|
|
public int GetX2()
|
|
{
|
|
return x2;
|
|
}
|
|
|
|
public void SetX2(int x)
|
|
{
|
|
x2 = x;
|
|
}
|
|
|
|
public int GetY1()
|
|
{
|
|
return y1;
|
|
}
|
|
|
|
public void SetY1(int y)
|
|
{
|
|
y1 = y;
|
|
}
|
|
|
|
public int GetY2()
|
|
{
|
|
return y2;
|
|
}
|
|
|
|
public void SetY2(int y)
|
|
{
|
|
y2 = y;
|
|
}
|
|
|
|
public int GetPlane1()
|
|
{
|
|
return plane1;
|
|
}
|
|
|
|
public void SetPlane1(int val)
|
|
{
|
|
plane1 = val;
|
|
}
|
|
|
|
public int GetPlane2()
|
|
{
|
|
return plane2;
|
|
}
|
|
|
|
public void SetPlane2(int val)
|
|
{
|
|
plane2 = val;
|
|
}
|
|
}
|