Ejemplo n.º 1
0
 private static GMTable TransformTable(GMTable table, Func <BoundingBox, BoundingBox> boxConverter)
 {
     return(new GMTable(
                boxConverter(table.BoundingBox),
                table.RowsCount, table.ColsCount,
                table.Cells().Select(c => TransformCell(c, boxConverter))));
 }
 private static GMTable RemoveEmptyElementsInTable(this GMTable table)
 {
     return(new GMTable(
                table.BoundingBox,
                table.RowsCount, table.ColsCount,
                table.Cells().Select(RemoveEmptyElementsInCell)));
 }
Ejemplo n.º 3
0
 public void AddTable(GMTable table)
 {
     tables.Add(table);
 }