18 lines
418 B
C#
18 lines
418 B
C#
using LoaderCalculator.Data.Matrix;
|
|
using LoaderCalculator.Data.Ndms;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelper.Services.ResultViewers
|
|
{
|
|
public interface IResultFunc
|
|
{
|
|
string Name { get; }
|
|
Func<IStrainMatrix, INdm, double> ResultFunction { get; }
|
|
double UnitFactor { get; }
|
|
}
|
|
}
|