Skip to content
Snippets Groups Projects
  1. Dec 18, 2015
  2. Dec 15, 2015
    • Joachim Pouderoux's avatar
      Fix a bug with vtkDelaunay2D. · 57316c29
      Joachim Pouderoux authored and Xabi's avatar Xabi committed
      In a previous patch, a mechanism was added to check edges once
      constrained edges were applied. However, in some cases, this
      check can break some constrained edges.
      This patch make sure to not perform this edge check for triangle
      edges which contains a constrained edge.
      
      (cherry picked from commit ac7a28f9)
      57316c29
  3. Dec 14, 2015
  4. Dec 10, 2015
  5. Dec 09, 2015
  6. Dec 04, 2015
  7. Dec 03, 2015
  8. Nov 30, 2015
  9. Nov 27, 2015
  10. Nov 19, 2015
  11. Nov 18, 2015
  12. Nov 16, 2015
  13. Nov 13, 2015
  14. Nov 12, 2015
  15. Oct 30, 2015
  16. Oct 29, 2015
  17. Oct 28, 2015
  18. Oct 23, 2015
    • Ben Boeckel's avatar
      Merge remote-tracking branch... · 0225aeea
      Ben Boeckel authored
      Merge remote-tracking branch 'gl/Xabi/release-6.3-enable-DoubleClick-for-Win32OpenGLRenderWindow' into release-6.3
      
      * gl/Xabi/release-6.3-enable-DoubleClick-for-Win32OpenGLRenderWindow:
        Set the CS_DBLCLKS  flag to receive double-click notifications
      0225aeea
  19. Oct 22, 2015
  20. Oct 21, 2015
  21. Oct 20, 2015
  22. Oct 08, 2015
  23. Oct 07, 2015
    • David Gobbi's avatar
      Remove Python version from vtkPythonConfigure.h. · 7d78e329
      David Gobbi authored
      This is no longer needed, and is needlessly restrictive.
      It's best to have a header that can be used by multiple
      versions of python.
      7d78e329
    • Max Smolens's avatar
      Fix HAVE_ROUND-related build warnings in Visual Studio 2013 · 96ca3e6f
      Max Smolens authored and David Gobbi's avatar David Gobbi committed
      When built with certain versions of Python, a VTK build with
      VTK_WRAP_PYTHON enabled results in many build warnings. For example:
      
      Python 2.7.10:
      
          c:\python27\include\pyconfig.h(444): warning C4005: 'HAVE_ROUND' : macro redefinition
                    C:\dev\VTK\Utilities\Python\vtkPython.h(77) : see previous definition of 'HAVE_ROUND'
      
      This warning occurs because both vtkPython.h and Python.h define the
      HAVE_ROUND macro, but the definitions don't match. Python 2.7.9+ and
      Python 3.4.2+ define HAVE_ROUND when compiling with Visual Studio 2013+
      (see http://bugs.python.org/issue21958).
      
      Python 3.4.1:
      
          c:\python34\include\pymath.h(22): warning C4273: 'round' : inconsistent dll linkage
                    C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\math.h(516) : see previous definition of 'round'
          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\xtgmath.h(206): warning C4273: 'round' : inconsistent dll linkage
                    C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\math.h(516) : see previous definition of 'round'
      
      This warning occurs because neither Python.h nor vtkPython.h define HAVE_ROUND.
      
      This commit removes the build warnings by:
      - changing the HAVE_ROUND macro definition to match Python's definition
      - removing the Python version check
      96ca3e6f
Loading