| 197 | } |
| 198 | |
| 199 | Py::List MaterialPy::getPhysicalModels() const |
| 200 | { |
| 201 | auto models = getMaterialPtr()->getPhysicalModels(); |
| 202 | Py::List list; |
| 203 | |
| 204 | for (auto it : *models) { |
| 205 | list.append(Py::String(it.toStdString())); |
| 206 | } |
| 207 | |
| 208 | return list; |
| 209 | } |
| 210 | |
| 211 | Py::List MaterialPy::getAppearanceModels() const |
| 212 | { |