Files
StructureHelper/FieldVisualizer/Entities/Values/Primitives/ITrianglePrimitive.cs
2025-10-26 22:19:25 +05:00

17 lines
404 B
C#

using StructureHelperCommon.Models.Shapes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FieldVisualizer.Entities.Values.Primitives
{
public interface ITrianglePrimitive : IValuePrimitive
{
IPoint2D Point1 { get; set; }
IPoint2D Point2 { get; set; }
IPoint2D Point3 { get; set; }
}
}