Add trace of primitives and material

This commit is contained in:
Evgeny Redikultsev
2024-12-22 21:44:20 +05:00
parent 07370e6fc9
commit f10bcf6350
14 changed files with 511 additions and 116 deletions

View File

@@ -33,6 +33,14 @@ namespace StructureHelperCommon.Models.Tables
table.Add(new ShTableRow<T>(RowSize));
}
public void AddRows(IEnumerable<IShTableRow<T>> tableRows)
{
foreach (var item in tableRows)
{
AddRow(item);
}
}
/// <summary>
/// Get all rows in the table
/// </summary>