2013-10-21 33 views

回答

5

因爲vtkStructuredPoints(vtkStructuredPointsReader上的GetOutput()類型)是vtkDataSet的子類,所以可以使用vtkDataSet的GetBounds(double [6])函數。這裏是一個例子:

double bounds[6]; 
    structuredPointsReader->Update(); 
    structuredPointsReader->GetOutput()->GetBounds(bounds); 

    std::cout << "xmin: " << bounds[0] << " " 
      << "xmax: " << bounds[1] << std::endl 
      << "ymin: " << bounds[2] << " " 
      << "ymax: " << bounds[3] << std::endl 
      << "zmin: " << bounds[4] << " " 
      << "zmax: " << bounds[5] << std::endl;