Files
StructureHelper/StructureHelperLogics/Models/Primitives/LinePrimitive.cs
Evgeny Redikultsev f562cf2bce All Test Was Repaired
2022-12-10 17:44:06 +05:00

39 lines
872 B
C#

using StructureHelperCommon.Models.Shapes;
using StructureHelperLogics.NdmCalculations.Primitives;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.Primitives
{
public class LinePrimitive : IPrimitive
{
public int Id { get; set; }
public string Name { get; set; }
public IPoint2D Center { get; set; }
public IShape Shape { get; }
public LinePrimitive()
{
}
public IEnumerable<INdmPrimitive> GetNdmPrimitives()
{
throw new NotImplementedException();
}
public object Clone()
{
throw new NotImplementedException();
}
public void Save()
{
throw new NotImplementedException();
}
}
}