------------------------------------------------------------------------------
| 115 | |
| 116 | //------------------------------------------------------------------------------ |
| 117 | void vtkCubeAxesActor2D::SetLabelFormat(const char* formatArg) |
| 118 | { |
| 119 | std::string format = formatArg ? vtk::to_std_format(formatArg) : ""; |
| 120 | const char* formatStr = format.c_str(); |
| 121 | vtkSetStringBodyMacro(LabelFormat, formatStr); |
| 122 | } |
| 123 | |
| 124 | //------------------------------------------------------------------------------ |
| 125 | // Shallow copy of an actor. |
no test coverage detected