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
  • 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/NegativeIndices (content was: "==NegativeIndices.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkImageData.h> int main(int, char *[]) { // Create an image data vtkSmartPointer<vtkImageData> imageData = vtkSmartPointer<vtkImageData>::New(); // Specify the size of the image data imageData->SetExtent(-5, 5, -5, 5, -5, 5); // Fill every entry of the image data with "2.0" int* extent = imageData->GetExtent(); #if VTK_MAJOR_VERSION <= 5 imageD...")