using StructureHelperCommon.Services.Forces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;
}
}
}