Skip to content
  1. Jan 10, 2018
  2. Jan 09, 2018
  3. Jan 08, 2018
    • Mmanu Chaturvedi's avatar
      97d53e76
    • Will Schroeder's avatar
      Merge topic 'Trimmed-Extrusion-Filter' · fc2ec79b
      Will Schroeder authored and Kitware Robot's avatar Kitware Robot committed
      
      
      a007b93d New extrusion filter extrudes to trim surface
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Merge-request: !3700
      fc2ec79b
    • David Thompson's avatar
      Merge topic 'fix-gdal-cs-wrapping' · ca174d0f
      David Thompson authored and Kitware Robot's avatar Kitware Robot committed
      
      
      b94cdac8 Avoid breaking ParaView's CS wrapping of vtkGDAL.
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Acked-by: default avatarBen Boeckel <ben.boeckel@kitware.com>
      Merge-request: !3776
      ca174d0f
    • Ken Martin's avatar
      Merge topic 'moar-plus-misc-typos' · a0409f10
      Ken Martin authored and Kitware Robot's avatar Kitware Robot committed
      
      
      cb8f6bf1 More typo fixes
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Merge-request: !3768
      a0409f10
    • Joachim Pouderoux's avatar
      Merge topic 'FixRenderingWithNoIsoContourValues' · 8b57608a
      Joachim Pouderoux authored and Kitware Robot's avatar Kitware Robot committed
      
      
      16c43f79 Fix GPU based iso surfaces rendering when no contour values are given.
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Acked-by: default avatarMichael Migliore <michael.migliore@kitware.com>
      Acked-by: default avatarMathieu Westphal <mathieu.westphal@kitware.com>
      Merge-request: !3737
      8b57608a
    • Allison Vacanti's avatar
      Merge topic 'vtkMathMinMax_NaN_handling' · 878805ee
      Allison Vacanti authored and Kitware Robot's avatar Kitware Robot committed
      
      
      6b3513cc Ensure that vtkMath::Min/Max consistently handle NaN inputs.
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Merge-request: !3772
      878805ee
    • Will Schroeder's avatar
      New extrusion filter extrudes to trim surface · a007b93d
      Will Schroeder authored
      This filter extrudes a generating polydata until it intersects
      a trim surface. Two inputs are required: the input generating
      polydata and the trim surface (also polydata). Options exist
      to control the capping process to produce the end cap at the average
      intersection distance, maximum intersection distance, minimum
      intersection distance, and as intersected.
      
      Further, vtkStaticCellLocator was not thread safe in its line
      intersection method, and the locator was not intersecting cells
      properly in all cases. The bin - line intersection traversal
      algorithm was confusing and non-optimal. Hence the commit
      also includes a rewrite of the intersection code to be thread
      safe and to use a more efficient bin/voxel traversal method.
      a007b93d
    • Brad King's avatar
      Merge branch 'upstream-KWSys' into update-kwsys · 46116cab
      Brad King authored
      * upstream-KWSys:
        KWSys 2018-01-08 (f7990fc2)
      46116cab
    • Kitware Robot's avatar
      KWSys 2018-01-08 (f7990fc2) · cc74cc1c
      Kitware Robot authored and Brad King's avatar Brad King committed
      Code extracted from:
      
          https://gitlab.kitware.com/utils/kwsys.git
      
      at commit f7990fc29bfb102ead2024ebca07939f690a64e6 (master).
      
      Upstream Shortlog
      -----------------
      
      Brad King (11):
            c8cfe4e0 SystemTools: Drop SplitProgramFromArgs function
            aa9f3a82 macOS: Account for deployment target when checking for utimensat
            41c93d97 Remove unnecessary testIOS
            7a4cca11 Process: Refactor test compile flag addition
            90886a99 Process: Fix tests under ubsan
            bfdbfe9b Avoid requiring CMake 3.4 string(APPEND)
            1b09cf0d Configure: Add KWSYS_FALLTHROUGH macro for C++ code
            7b6fa277 ConsoleBuf: Add explicit switch case fallthrough markup
            e9557f37 RegularExpression: Fix regression in 'find' method
            09724ac8 hashtable: Avoid use of std::unary_function
            9995f700 hashtable: Drop when building inside CMake
      
      Bradley Lowekamp (1):
            b4507c9c Remove dead code from Configure.h.in
      
      Bryon Bean (1):
            8e428c18 Process: Add function to kill process (and children) with pid
      
      Clinton Stimpson (1):
            e9d2b696 SystemTools: Cache only existing path names in GetActualCaseForPath
      
      Domen Vrankar (1):
            9e0b4d1a SystemTools: set default MakeDirectory permissions mode
      
      Gregor Jasny (1):
            8e029751 SystemTools: Fix IsSubDirectory for subdirs of drive root
      
      Hans Johnson (1):
            7d7f3b2d Configure: Add KWSYS_NULLPTR macro for C++ code
      
      Justin Berger (2):
            6d73752d Allow KWSYSPE_USE_SELECT macro to be overriden at compile time.
            da61baff Added cmake settable property to enable the macro
      
      Matthias Maennich (5):
            6599eda6 testRobustEncoding: restore format flags for std::cout before exiting
            862562ce SystemInformation: fix potential off-by-one write
            13e02b76 processUNIX: close intermediate file descriptor in error case
            73c491e8 processUNIX: fix not null terminated buffer during error reporting
            ce55a255 testSystemTools: fix some copy'n'paste issues
      
      Rolf Eike Beer (9):
            caaef6bb testSystemTools: avoid strcpy()
            a5046656 SystemTool: remove unused Convert*MacroString()
            6ca15069 SystemTools: make Getcwd() more efficient on Windows
            6d7eb3a1 CommandLineArguments: do not check variable before delete[]
            3b8fefea remove pointer checks before calling free()
            cf8beae3 ProcessUNIX: use strdup() instead of open coding it
            5d2aff9d ProcessWin32: use strdup() instead of open coding it
            8717ac15 DynamicLoader: use std::string instead of strcpy() + strcat()
            88d4dd4b CommandLineArguments: use std::string in GenerateHelp()
      
      Sebastian Holtermann (4):
            4d1e8738 RegularExpression: Make compile() reentrant (thread safe)
            64f80068 RegularExpression: Make find() reentrant (thread safe)
            bbc94ba8 RegularExpression: Remove unused code
            cff58f07 RegularExpression: New RegularExpressionMatch class
      
      Steven Velez (1):
            80652055 Directory: Use Windows Extended Paths
      
      Volo Zyko (1):
            9f6cd407 SystemTools: Fix removing of soft links to directories on Windows.
      
      Wouter Klouwen (1):
            749b7506 ProcessUNIX: Use monotonic clock in kwsysProcessTimeGetCurrent() for POSIX
      
      luzpaz (1):
            9a1d5901 Fix trivial typos in text
      cc74cc1c
    • Joachim Pouderoux's avatar
      Fix GPU based iso surfaces rendering when no contour values are given. · 16c43f79
      Joachim Pouderoux authored
      Also fix vtkVolumeProperty::GetMTime() to consider IsoSurfacesValues
      MTime.
      16c43f79
  4. Jan 07, 2018
  5. Jan 06, 2018
  6. Jan 05, 2018