Files
StructureHelper/FieldVisualizer/Entities/Values/Primitives/ITrianglePrimitive.cs
Evgeny Redikultsev 96e7e9a587 Add 3d Viewer
2025-11-30 17:34:04 +05:00

20 lines
527 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; }
double ValuePoint1 { get; set; }
double ValuePoint2 { get; set; }
double ValuePoint3 { get; set; }
}
}