All public logs

From KitwarePublic
Jump to navigationJump to search

Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 03:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/StructuredData/GetLinearPointId (content was: "==GetLinearPointId.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkStructuredData.h> #include <vtkStructuredGrid.h> int main(int, char *[]) { // Create a grid vtkSmartPointer<vtkStructuredGrid> structuredGrid = vtkSmartPointer<vtkStructuredGrid>::New(); // Set the dimensions of the grid { int dims[3] = {5,10,1}; structuredGrid->SetDimensions(dims); } // Retrieve the dimensions of the grid int dimensions[3]; structuredGrid->GetD...")