Skip to content
Snippets Groups Projects
  1. Apr 05, 2017
  2. Apr 02, 2017
    • David Gobbi's avatar
      Remove special characters from VTK source files. · 03647e64
      David Gobbi authored
      The source was searched with "grep -l [^ -~]" to find characters outside
      of the printable ASCII range 0x20 to 0x7e.  The worst offender is the
      en-dash character, which is visually indistinguishable from the minus
      character in most code editors.  Several tabs were also found, which
      is surprising since they should be blocked by the commit hooks.
      03647e64
  3. Mar 31, 2017
  4. Mar 27, 2017
  5. Mar 21, 2017
  6. Mar 15, 2017
    • Chet Nieter's avatar
      Paired vtkErrorMacro's with returns. · 714b0628
      Chet Nieter authored
      Paired several vtkErrorMacro's with missing return calls to bail on the
      function to prevent applications from freezing. A few vtkErrorMacro's
      were changed to vtkWarningMacro's since it appears the intention is
      for the process to continue.
      714b0628
  7. Mar 14, 2017
  8. Mar 13, 2017
  9. Mar 08, 2017
    • Sean McBride's avatar
      Fixed various easy cppcheck dashboard warnings · 887c88d8
      Sean McBride authored
      - some post to pre increment changes
      - removed unneeded check that unsigned >= 0
      - fixed seeming copy-paste where kMax was assigned different values back-to-back
      - remvoed unused variable
      - marked operator= method with VTK_DELETE_FUNCTION to hopefully silence complaint about return type
      887c88d8
  10. Mar 03, 2017
  11. Feb 24, 2017
  12. Feb 23, 2017
  13. Feb 22, 2017
  14. Feb 21, 2017
  15. Feb 18, 2017
  16. Feb 17, 2017
  17. Feb 16, 2017
  18. Feb 15, 2017
    • Ken Martin's avatar
      Many fixes to OBJImporter · 30b5415f
      Ken Martin authored
      This topic fixes a few issues and adds a test executable
      that can be used to convert obj files to vtp more easily.
      
      The issues fixed are
      
      1) having a map_Kd without a texture name cause a crash
      
      2) having materials in the mtl file that were not used
      resulted in geometry and parts missing from the output
      
      3) having material names with spaces in them caused
      the material not to be recognized
      
      4) some packages use map_kd instead of map_Kd causing
      textures to not be found.
      30b5415f
  19. Feb 13, 2017
    • Kenneth Moreland's avatar
      Fix netCDF crash when reading empty attributes · 2930e76b
      Kenneth Moreland authored
      When reading an attribute, vtkNetCDFCFReader would allocate an
      std::string of the appropriate length, then grab the C pointer from it
      and call the netCDF library to fill it with the value for the attribute.
      The problem was that if the attribute was zero-length, std::string would
      throw an exception if you tried to grab the pointer. Fix the problem by
      not loading any data if the length is 0.
      
      Also added some defensive code for when reading cell bounds when there
      are no cells.
      2930e76b
  20. Feb 10, 2017
  21. Feb 06, 2017
  22. Feb 02, 2017
    • Cory Quammen's avatar
      BUG 16965: Enable reading an arbitrary number of time steps · 60f7bd9c
      Cory Quammen authored
      This patch removes the upper limit of 4096 time steps in annotated
      time XML files. Now an arbitrary number of time steps can be read.
      
      Repurposed vtkXMLDataElementVectorAttributeParse() for the purposes of
      counting tokens of a particular type in an attribute by changing the
      meaning of a NULL 'data' parameter.
      
      The existing test has been added to try out the new feature, as well
      as a small test data set.
      
      Hat tip to David Benn for the bug report and a reference solution.
      60f7bd9c
    • Cory Quammen's avatar
      Silence HDF5-generated errors in CanReadFile() · 8f102249
      Cory Quammen authored
      Expected errors generated when vtkTRUCHASReader::CanReadFile() is
      invoked on non-TRUCHAS files were written to stdout, causing false
      negative test results caused by the word "Error" being written
      to stdout. This changes silences those error messages.
      8f102249
  23. Feb 01, 2017
  24. Jan 25, 2017
    • Andrew Bauer's avatar
      Improving reading pieces for vtkPExodusIIReader. · 8b7c6c82
      Andrew Bauer authored
      The vtkPExodusIIReader now will go through multiple files when
      examining for meta-data during the RequestInformation() pass.
      Previously, if the first file didn't have any data then the
      information would be wrong but with this change it will be correct.
      8b7c6c82
    • Bill Lorensen's avatar
      ENH: Add point cloud support to PLYReader · 5b8dcf0b
      Bill Lorensen authored
      The reader now supports reading files have vertices but no
      faces. These fies are used to store point clouds.
      
      A sample data file and test are provided.
      5b8dcf0b
  25. Jan 22, 2017
    • Sean McBride's avatar
      const improvements to APIs and internal usage · 8b32854b
      Sean McBride authored
      - Made a few APIs' params const
      - Changed many usages of the evil GetBounds() to expect a const
        return value, even though it does not (yet?) return const
      - Slightly changed return values of vtkTextActor3D::GetBounds()
        to return its own ivar instead of its ImageActor's
      8b32854b
  26. Jan 19, 2017
Loading