Binding function tree
This commit is contained in:
@@ -21,6 +21,7 @@ namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
public FunctionType Type { get; set; }
|
||||
public FunctionPurpose FunctionPurpose { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string FullName { get; set; }
|
||||
public string Description { get; set; }
|
||||
public List<GraphPoint> Table { get; set; }
|
||||
public double MinArg { get; set; }
|
||||
|
||||
@@ -22,6 +22,7 @@ namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
public FunctionType Type { get; set; }
|
||||
public FunctionPurpose FunctionPurpose { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string FullName { get; set; }
|
||||
public string Description { get; set; }
|
||||
public double MinArg { get; set; }
|
||||
public double MaxArg { get; set; }
|
||||
|
||||
@@ -99,6 +99,7 @@ namespace StructureHelperCommon.Infrastructures.Settings
|
||||
new TableFunction()
|
||||
{
|
||||
Name = "Not StressStrain",
|
||||
FullName = "Not StressStrain",
|
||||
FunctionPurpose = FunctionPurpose.FireProtection,
|
||||
Table = new List<GraphPoint>()
|
||||
{
|
||||
@@ -115,6 +116,7 @@ namespace StructureHelperCommon.Infrastructures.Settings
|
||||
new TableFunction()
|
||||
{
|
||||
Name = "Табличная системная функция",
|
||||
FullName = "Табличная системная функция",
|
||||
FunctionPurpose = FunctionPurpose.StressStrain,
|
||||
Table = new List<GraphPoint>()
|
||||
{
|
||||
@@ -131,6 +133,7 @@ namespace StructureHelperCommon.Infrastructures.Settings
|
||||
new FormulaFunction()
|
||||
{
|
||||
Name = "Формульная системная функция",
|
||||
FullName = "Формульная системная функция",
|
||||
FunctionPurpose = FunctionPurpose.StressStrain,
|
||||
Formula = "x^2",
|
||||
Step = 100,
|
||||
|
||||
Reference in New Issue
Block a user