| 73 | } |
| 74 | |
| 75 | QStringList pymeshlab::Function::pythonFunctionParameters() const |
| 76 | { |
| 77 | QStringList list; |
| 78 | for (const FunctionParameter& p : parameters) |
| 79 | list.push_back(p.pythonName()); |
| 80 | return list; |
| 81 | } |
| 82 | |
| 83 | bool pymeshlab::Function::contains(const QString& pythonParameter) const |
| 84 | { |
nothing calls this directly
no test coverage detected