-----------------------------------------------------------------------------
| 1465 | |
| 1466 | //-----------------------------------------------------------------------------** |
| 1467 | void vtkAxisActor::SetExponent(const std::string& exponent) |
| 1468 | { |
| 1469 | if (this->Exponent != exponent) |
| 1470 | { |
| 1471 | this->Exponent = exponent; |
| 1472 | static const std::string prefix = "e"; |
| 1473 | this->ExponentProp->SetInputText(prefix + exponent); |
| 1474 | this->ExponentTextTime.Modified(); |
| 1475 | this->Modified(); |
| 1476 | } |
| 1477 | } |
| 1478 | |
| 1479 | //-----------------------------------------------------------------------------** |
| 1480 | void vtkAxisActor::SetExponentLocation(int location) |