All Test Was Repaired
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace StructureHelperLogics.NdmCalculations.Primitives
|
||||
{
|
||||
public interface IHasPrimitives
|
||||
{
|
||||
List<INdmPrimitive> Primitives { get; }
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@ using System.Collections.Generic;
|
||||
using StructureHelperCommon.Infrastructures.Interfaces;
|
||||
using System;
|
||||
|
||||
namespace StructureHelperLogics.Models.Primitives
|
||||
namespace StructureHelperLogics.NdmCalculations.Primitives
|
||||
{
|
||||
public interface INdmPrimitive : ISaveable, ICloneable
|
||||
{
|
||||
|
||||
@@ -33,13 +33,12 @@ namespace StructureHelperLogics.NdmCalculations.Primitives
|
||||
|
||||
public RectanglePrimitive()
|
||||
{
|
||||
Name = "New Rectangle";
|
||||
Width = 0.4d;
|
||||
Height = 0.6d;
|
||||
NdmMaxSize = 0.01d;
|
||||
NdmMinDivision = 10;
|
||||
}
|
||||
|
||||
public RectanglePrimitive(IHeadMaterial material) : this() { HeadMaterial = material; }
|
||||
|
||||
public object Clone()
|
||||
{
|
||||
RectanglePrimitive primitive = new RectanglePrimitive();
|
||||
|
||||
Reference in New Issue
Block a user