Skip to content
Snippets Groups Projects
  1. Jan 08, 2019
  2. Dec 20, 2018
    • Sean McBride's avatar
      Fixed all -Wswitch-enum warnings · 4cb5e34c
      Sean McBride authored
      There were surprisingly few.  The benefit is that when additional enums are added, a warning will point you to consider every switch statement.
      4cb5e34c
  3. Dec 04, 2018
  4. Nov 18, 2018
    • Utkarsh Ayachit's avatar
      Fix vtkChartMatrix to not set invalid size · a11e4c23
      Utkarsh Ayachit authored
      Fixes issue exposed by !4835.
      
      vtkChartMatrix was setting sizes with negative widths/heights on
      internal plots. This was happening during ParaView test playback.
      Fixing vtkChartMatrix to avoid setting invalid sizes, prefer empty sizes
      instead.
      
      Added a few more assert checks in vtkContextClip and
      vtkOpenGLContextDevice2D to catch such issues earlier.
      a11e4c23
  5. Nov 15, 2018
    • Bill Lorensen's avatar
      BUG: Dynamic zero divide errors · dcbf3fcf
      Bill Lorensen authored
      vtkChartBox: replaced a retained, returned pointer with a stored
      value.
      
      vtkChartXY: Added check for range[0] == range[1] and avoid division by zero.
      
      vtkFunctionParser: Added check for division of a vector by 0.0.
      
      vtkUnstructuredGridQuadricDecimation: first time through loop,
      lasterror is 0.0. Avoid division by zero by checking for 0.0.
      dcbf3fcf
  6. Nov 12, 2018
    • Bill Lorensen's avatar
      BUG: Dynamic zero divide errors · 2216de74
      Bill Lorensen authored
      vtkChartBox: replaced a retained, returned pointer with a stored
      value.
      
      vtkChartXY: Added check for range[0] == range[1] and avoid division by zero.
      
      vtkFunctionParser: Added check for division of a vector by 0.0.
      
      vtkUnstructuredGridQuadricDecimation: first time through loop,
      lasterror is 0.0. Avoid division by zero by checking for 0.0.
      2216de74
  7. Oct 27, 2018
  8. Oct 06, 2018
  9. Sep 14, 2018
  10. Sep 13, 2018
  11. Aug 16, 2018
  12. Aug 13, 2018
    • Cory Quammen's avatar
      Fix logic for AdjustLowerBoundForLogPlot · bddd6572
      Cory Quammen authored
      The implementation of vtkChartXY::RecalculatePlotBounds() works with
      either the scaled or unscaled bounds, depending on whether scaling is
      enabled on the axis. However, the logic for handling the
      AdjustLowerBoundForLogPlot flag was not correctly handling the case
      where the bounds were log scaled.
      
      To address this issue, the implementation now uses some logic to
      determine whether log scaling is enabled and adjusts the bounds of the
      plot accordingly.
      
      Added a test for this feature as well.
      bddd6572
    • Cory Quammen's avatar
      Standardize vtkAxis::PrintSelf() · 2a1dc2a1
      Cory Quammen authored
      PrintSelf() should print the member names and values. vtkAxis was
      doing something different.
      2a1dc2a1
  13. Aug 06, 2018
  14. Aug 02, 2018
  15. Aug 01, 2018
    • luz.paz's avatar
      Misc. typos · 0c5f8b4b
      luz.paz authored
      Found via `codespell -q 3 -I ../vtk-whitelist-words.txt --skip="./ThirdParty,./Utilities"`
      0c5f8b4b
  16. Jul 30, 2018
  17. Jul 27, 2018
  18. Jul 26, 2018
  19. Jun 18, 2018
  20. Jun 17, 2018
  21. May 31, 2018
  22. May 30, 2018
  23. May 25, 2018
  24. May 18, 2018
    • Kitware Robot's avatar
      ExternalData: Convert content links from MD5 to SHA512 · d6d05b2a
      Kitware Robot authored and Brad King's avatar Brad King committed
      Populate a script with `map_<md5>=<sha512>` variable settings and
      then run the following to convert the content link files:
      
          git ls-files -- '*.md5' | while read f; do
            md5="$(cat "$f")"
            sha512="$(eval echo \${map_$md5})"
            rm "$f"
            echo $sha512 > ${f%.md5}.sha512
          done
      d6d05b2a
  25. May 09, 2018
  26. May 08, 2018
  27. May 07, 2018
  28. May 04, 2018
  29. May 03, 2018
  30. Mar 29, 2018
  31. Mar 20, 2018
  32. Mar 14, 2018
    • Csaba Pinter's avatar
      Fixed control points clamp function to handle NaN value · bc627d83
      Csaba Pinter authored
      If the user clicks in a plot that has an invalid (0,0) range, then in vtkContextScene::ProcessItem that is called after mouse events, the mapped mouse position becomes NaN, due to invalid matrix in the ContextScene's transform. This NaN position is then added to the function as a control point with an invalid NaN value. This fix makes sure this does not happen, by clamping the NaN values to minimum bounds on x axis, and 0 on y axis (any value comparison returns false if an operand is NaN, so need to check explicitly).
      bc627d83
Loading