diff options
Diffstat (limited to 'grapher/VectorXY.cs')
| -rw-r--r-- | grapher/VectorXY.cs | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/grapher/VectorXY.cs b/grapher/VectorXY.cs deleted file mode 100644 index 53c9e68..0000000 --- a/grapher/VectorXY.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace grapher -{ - public class VectorXY - { - public VectorXY(double x) - { - X = x; - Y = x; - } - - public VectorXY(double x, double y) - { - X = x; - Y = y; - } - - public double X { get; set; } - - public double Y { get; set; } - - public void SetBoth(double value) - { - X = value; - Y = value; - } - } -} |