18 lines
533 B
C#
18 lines
533 B
C#
using StructureHelperLogics.Data.Shapes;
|
|
using StructureHelperLogics.NdmCalculations.Materials;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Entities
|
|
{
|
|
public class NdmPrimitive : INdmPrimitive
|
|
{
|
|
public ICenter Center { get; set; }
|
|
public IShape Shape { get; set; }
|
|
public IPrimitiveMaterial PrimitiveMaterial { get; set; }
|
|
public double NdmMaxSize { get; set; }
|
|
public int NdmMinDivision { get; set; }
|
|
}
|
|
}
|