using StructureHelperCommon.Services.Forces;
namespace StructureHelperCommon.Models.Forces
{
///
public class StrainTuple : IStrainTuple
{
///
public double Kx { get; set; }
///
public double Ky { get; set; }
///
public double EpsZ { get; set; }
///
public double Gx { get; set; }
///
public double Gy { get; set; }
///
public double Gz { get; set; }
///
public object Clone()
{
var target = new StrainTuple();
StrainTupleService.CopyProperties(this, target);
return target;
}
}
}