| 209 | } |
| 210 | |
| 211 | Py::List MaterialPy::getAppearanceModels() const |
| 212 | { |
| 213 | auto models = getMaterialPtr()->getAppearanceModels(); |
| 214 | Py::List list; |
| 215 | |
| 216 | for (auto it : *models) { |
| 217 | list.append(Py::String(it.toStdString())); |
| 218 | } |
| 219 | |
| 220 | return list; |
| 221 | } |
| 222 | |
| 223 | Py::List MaterialPy::getTags() const |
| 224 | { |