Window of calcultion's property is added

This commit is contained in:
Evgeny Redikultsev
2022-09-11 20:22:10 +05:00
parent 78ec7bdc6f
commit d9e3f9ba54
16 changed files with 521 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
using LoaderCalculator.Data.Matrix;
using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperLogics.Models.Calculations.CalculationProperties
{
public class ForceCombination : IForceCombination
{
public IForceMatrix ForceMatrix { get; private set; }
public bool TakeInCalculate { get; set; }
public ForceCombination()
{
ForceMatrix = new ForceMatrix() { Mx = 0d, My = 0d, Nz = 0d};
TakeInCalculate = true;
}
}
}