------------------------------------------------------------------------------
| 117 | |
| 118 | //------------------------------------------------------------------------------ |
| 119 | void vtkImageMandelbrotSource::SetProjectionAxes(int x, int y, int z) |
| 120 | { |
| 121 | double saveSize[4]; |
| 122 | |
| 123 | if (this->ProjectionAxes[0] == x && this->ProjectionAxes[1] == y && this->ProjectionAxes[2] == z) |
| 124 | { |
| 125 | return; |
| 126 | } |
| 127 | |
| 128 | this->Modified(); |
| 129 | this->GetSizeCX(saveSize); |
| 130 | this->ProjectionAxes[0] = x; |
| 131 | this->ProjectionAxes[1] = y; |
| 132 | this->ProjectionAxes[2] = z; |
| 133 | if (this->ConstantSize) |
| 134 | { |
| 135 | this->SetSizeCX(saveSize[0], saveSize[1], saveSize[2], saveSize[3]); |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | //------------------------------------------------------------------------------ |
| 140 | void vtkImageMandelbrotSource::SetWholeExtent( |