@{ * Safely call MapControlPointsToLogSpace() after casting the proxy to the * appropriate type. */
| 95 | * appropriate type. |
| 96 | */ |
| 97 | static bool MapControlPointsToLogSpace(vtkSMProxy* proxy, bool inverse = false) |
| 98 | { |
| 99 | vtkSMTransferFunctionProxy* self = vtkSMTransferFunctionProxy::SafeDownCast(proxy); |
| 100 | return self ? self->MapControlPointsToLogSpace(inverse) : false; |
| 101 | } |
| 102 | ///@} |
| 103 | |
| 104 | /** |
no test coverage detected