/**
  * Reassign a group of materials to a new materialID
  *
  * @param materials The new list of materials
  * @param matID The new materialID
  */
 public void reassignAttribute(long[] materials, long matID) {
   ((AttributeGrid) grid).reassignAttribute(materials, matID);
 }