Public Member Functions | |
MaterialCollection (const MaterialCollection ©) | |
void | add_material (Material *node_material) |
Adds a new Material to the collection. More... | |
void | add_materials_from (const MaterialCollection &other) |
Adds all the Materials indicated in the other collection to this material. More... | |
void | clear () |
Removes all Materials from the collection. More... | |
Material * | find_material (const std::string &name) const |
Returns the material in the collection with the indicated name, if any, or NULL if no material has that name. More... | |
Material * | get_material (int index) const |
Returns the nth Material in the collection. More... | |
int | get_num_materials () const |
Returns the number of Materials in the collection. More... | |
bool | has_material (Material *material) const |
Returns true if the indicated Material appears in this collection, false otherwise. More... | |
Material * | operator [] (int index) const |
Returns the nth Material in the collection. More... | |
MaterialCollection | operator+ (const MaterialCollection &other) const |
Returns a MaterialCollection representing the concatenation of the two lists. More... | |
void | operator+= (const MaterialCollection &other) |
Appends the other list onto the end of this one. More... | |
void | operator= (const MaterialCollection ©) |
void | output (std::ostream &out) const |
Writes a brief one-line description of the MaterialCollection to the indicated output stream. More... | |
void | remove_duplicate_materials () |
Removes any duplicate entries of the same Materials on this collection. More... | |
bool | remove_material (Material *node_material) |
Removes the indicated Material from the collection. More... | |
void | remove_materials_from (const MaterialCollection &other) |
Removes from this collection all of the Materials listed in the other collection. More... | |
int | size () const |
Returns the number of materials in the collection. More... | |
void | write (std::ostream &out, int indent_level=0) const |
Writes a complete multi-line description of the MaterialCollection to the indicated output stream. More... | |
Definition at line 24 of file materialCollection.h.
void MaterialCollection::add_material | ( | Material * | node_material | ) |
Adds a new Material to the collection.
Definition at line 46 of file materialCollection.cxx.
void MaterialCollection::add_materials_from | ( | const MaterialCollection & | other | ) |
Adds all the Materials indicated in the other collection to this material.
The other materials are simply appended to the end of the materials in this list; duplicates are not automatically removed.
Definition at line 98 of file materialCollection.cxx.
References get_num_materials().
Referenced by operator+=().
void MaterialCollection::clear | ( | ) |
Removes all Materials from the collection.
Definition at line 167 of file materialCollection.cxx.
Material * MaterialCollection::find_material | ( | const std::string & | name | ) | const |
Returns the material in the collection with the indicated name, if any, or NULL if no material has that name.
Definition at line 176 of file materialCollection.cxx.
References get_num_materials().
Material * MaterialCollection::get_material | ( | int | index | ) | const |
Returns the nth Material in the collection.
Definition at line 199 of file materialCollection.cxx.
int MaterialCollection::get_num_materials | ( | ) | const |
Returns the number of Materials in the collection.
Definition at line 191 of file materialCollection.cxx.
Referenced by add_materials_from(), find_material(), output(), remove_duplicate_materials(), and remove_materials_from().
bool MaterialCollection::has_material | ( | Material * | material | ) | const |
Returns true if the indicated Material appears in this collection, false otherwise.
Definition at line 154 of file materialCollection.cxx.
Material * MaterialCollection::operator [] | ( | int | index | ) | const |
Returns the nth Material in the collection.
This is the same as get_material(), but it may be a more convenient way to access it.
Definition at line 210 of file materialCollection.cxx.
|
inline |
Returns a MaterialCollection representing the concatenation of the two lists.
Definition at line 34 of file materialCollection.I.
|
inline |
Appends the other list onto the end of this one.
Definition at line 25 of file materialCollection.I.
References add_materials_from().
void MaterialCollection::output | ( | std::ostream & | out | ) | const |
Writes a brief one-line description of the MaterialCollection to the indicated output stream.
Definition at line 230 of file materialCollection.cxx.
References get_num_materials().
void MaterialCollection::remove_duplicate_materials | ( | ) |
Removes any duplicate entries of the same Materials on this collection.
If a Material appears multiple times, the first appearance is retained; subsequent appearances are removed.
Definition at line 129 of file materialCollection.cxx.
References get_num_materials().
bool MaterialCollection::remove_material | ( | Material * | node_material | ) |
Removes the indicated Material from the collection.
Returns true if the material was removed, false if it was not a member of the collection.
Definition at line 65 of file materialCollection.cxx.
void MaterialCollection::remove_materials_from | ( | const MaterialCollection & | other | ) |
Removes from this collection all of the Materials listed in the other collection.
Definition at line 111 of file materialCollection.cxx.
References get_num_materials().
int MaterialCollection::size | ( | ) | const |
Returns the number of materials in the collection.
This is the same thing as get_num_materials().
Definition at line 221 of file materialCollection.cxx.
void MaterialCollection::write | ( | std::ostream & | out, |
int | indent_level = 0 |
||
) | const |
Writes a complete multi-line description of the MaterialCollection to the indicated output stream.
Definition at line 243 of file materialCollection.cxx.