(Deprecated) Return the MaterialX type string associated with the given Python type.
(t)
| 268 | # |
| 269 | |
| 270 | def _typeToName(t): |
| 271 | "(Deprecated) Return the MaterialX type string associated with the given Python type." |
| 272 | warnings.warn("This function is deprecated; call MaterialX.getTypeString instead.", DeprecationWarning, stacklevel = 2) |
| 273 | return getTypeString(t()) |
| 274 | |
| 275 | def _valueToString(value): |
| 276 | "(Deprecated) Convert a Python value to its corresponding MaterialX value string." |
nothing calls this directly
no test coverage detected