ex-rep-04/PinwheelTiling/Model.cs
github-classroom[bot] 15be2cd9cb
Initial commit
2024-09-12 13:48:32 +00:00

4 lines
122 B
C#

namespace PinwheelTiling;
public record Point(double X, double Y);
public record Triangle(Point A, Point B, Point C);