------------------------------------------------------------------------------
| 409 | |
| 410 | //------------------------------------------------------------------------------ |
| 411 | void vtkGenericGeometryFilter::PrintSelf(ostream& os, vtkIndent indent) |
| 412 | { |
| 413 | this->Superclass::PrintSelf(os, indent); |
| 414 | |
| 415 | os << indent << "Point Minimum : " << this->GetPointMinimum() << "\n"; |
| 416 | os << indent << "Point Maximum : " << this->GetPointMaximum() << "\n"; |
| 417 | |
| 418 | os << indent << "Cell Minimum : " << this->GetCellMinimum() << "\n"; |
| 419 | os << indent << "Cell Maximum : " << this->GetCellMaximum() << "\n"; |
| 420 | |
| 421 | os << indent << "Extent: \n"; |
| 422 | os << indent << " Xmin,Xmax: (" << this->Extent[0] << ", " << this->Extent[1] << ")\n"; |
| 423 | os << indent << " Ymin,Ymax: (" << this->Extent[2] << ", " << this->Extent[3] << ")\n"; |
| 424 | os << indent << " Zmin,Zmax: (" << this->Extent[4] << ", " << this->Extent[5] << ")\n"; |
| 425 | |
| 426 | os << indent << "PointClipping: " << (this->GetPointClipping() ? "On\n" : "Off\n"); |
| 427 | os << indent << "CellClipping: " << (this->GetCellClipping() ? "On\n" : "Off\n"); |
| 428 | os << indent << "ExtentClipping: " << (this->GetExtentClipping() ? "On\n" : "Off\n"); |
| 429 | |
| 430 | os << indent << "Merging: " << (this->GetMerging() ? "On\n" : "Off\n"); |
| 431 | if (this->GetLocator()) |
| 432 | { |
| 433 | os << indent << "Locator: " << this->GetLocator() << "\n"; |
| 434 | } |
| 435 | else |
| 436 | { |
| 437 | os << indent << "Locator: (none)\n"; |
| 438 | } |
| 439 | |
| 440 | os << indent << "PassThroughCellIds: " << (this->GetPassThroughCellIds() ? "On\n" : "Off\n"); |
| 441 | } |
| 442 | |
| 443 | //------------------------------------------------------------------------------ |
| 444 | vtkMTimeType vtkGenericGeometryFilter::GetMTime() |
nothing calls this directly
no test coverage detected