| 85 | } |
| 86 | |
| 87 | Py::String ModelPy::getType() const |
| 88 | { |
| 89 | auto type = (getModelPtr()->getType() == Model::ModelType_Physical) |
| 90 | ? "Physical" |
| 91 | : "Appearance"; |
| 92 | |
| 93 | return Py::String(type); |
| 94 | } |
| 95 | |
| 96 | void ModelPy::setType(Py::String arg) |
| 97 | { |
no test coverage detected