Add trace force results

This commit is contained in:
Evgeny Redikultsev
2024-12-23 21:38:47 +05:00
parent f10bcf6350
commit 921ec22e8a
5 changed files with 232 additions and 10 deletions

View File

@@ -83,7 +83,7 @@ namespace StructureHelperLogics.NdmCalculations.Primitives
};
ndmRow.Elements[1].Value = new StringLogEntry()
{
Message = rectShape.Width.ToString(),
Message = rectShape.Width.ToString() + "(m)",
Priority = Priority
};
rows.Add(ndmRow);
@@ -102,7 +102,7 @@ namespace StructureHelperLogics.NdmCalculations.Primitives
};
ndmRow.Elements[1].Value = new StringLogEntry()
{
Message = point.Area.ToString(),
Message = point.Area.ToString() + "(m^2)",
Priority = Priority
};
rows.Add(ndmRow);
@@ -133,7 +133,7 @@ namespace StructureHelperLogics.NdmCalculations.Primitives
};
ndmRow.Elements[1].Value = new StringLogEntry()
{
Message = "X = " + ndmPrimitive.Center.X.ToString() + ", Y = " + ndmPrimitive.Center.Y.ToString(),
Message = "X = " + ndmPrimitive.Center.X.ToString() + "(m)" + ", Y = " + ndmPrimitive.Center.Y.ToString() + "(m)",
Priority = Priority
};
rows.Add(ndmRow);
@@ -152,7 +152,7 @@ namespace StructureHelperLogics.NdmCalculations.Primitives
};
ndmRow.Elements[1].Value = new StringLogEntry()
{
Message = rectShape.Width.ToString(),
Message = rectShape.Height.ToString() + "(m)",
Priority = Priority
};
rows.Add(ndmRow);
@@ -164,7 +164,7 @@ namespace StructureHelperLogics.NdmCalculations.Primitives
};
ndmRow.Elements[1].Value = new StringLogEntry()
{
Message = rectShape.Height.ToString(),
Message = rectShape.Width.ToString() + "(m)",
Priority = Priority
};
rows.Add(ndmRow);