Create Triangle.cs
This commit is contained in:
9
DrawFigureLibrary/Figures/Triangle.cs
Normal file
9
DrawFigureLibrary/Figures/Triangle.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.Windows;
|
||||
|
||||
namespace DrawFigureLibrary.Figures
|
||||
{
|
||||
public class Triangle : PolygonFigure
|
||||
{
|
||||
public Triangle(string name, Point a, Point b, Point c) : base(name, [a, b, c]) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user