Files
StructureHelper/StructureHelperLogics/NdmCalculations/Primitives/IShapeNDMPrimitive.cs
Evgeny Redikultsev c31e56869c Add polygon shape
2025-09-07 08:12:07 +05:00

15 lines
349 B
C#

using StructureHelperCommon.Models.Shapes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Primitives
{
public interface IShapeNDMPrimitive : INdmPrimitive, IHasDivisionSize
{
void SetShape(IShape shape);
}
}