- 04 Oct, 2017 4 commits
-
-
Kitware Robot authored
Now that VTK requires a C++11 compiler we can ditch using custom typedefs to wrap =delete;
-
David E. DeMarle authored
5a9d921d Correct the recent NULL replacement for windows compiler. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3398
-
David E. DeMarle authored
-
Andrew Bauer authored
843c49d5 Fixing Python wrapped use of vtkCellSizeFilter Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !3396
-
- 03 Oct, 2017 24 commits
-
-
Andrew Bauer authored
-
Robert Maynard authored
168d2bc4 vtkmlib now installs files into a subdirectory only. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !3390
-
T.J. Corona authored
6a4678b2 vtkBooleanOperationPolyDataFilter: exit with failure if intersection fails 38c2ba64 vtkIntersectionPolyDataFilter: use vtkPolygon::BoundedTriangulate f5e70ce9 vtkDelaunay2D: triangulate polygon with BoundedTriangulate() 05f3281e vtkPolygon: Add unbiased ear cut and bounded triangulate methods. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !3273
-
Brad King authored
ccdb0f50 Move .gitattributes files so they will not be globbed as data Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !3372
-
David Thompson authored
cc5101a8 Add Lagrange polynomial higher-order cells to VTK. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Andrew Bauer <andy.bauer@kitware.com> Merge-request: !3251
-
Ken Martin authored
de3dad82 classes appear to have been deprecated for at least 5 years Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !3385
-
Brad King authored
81e2530c vtkMatplotlibMathTextUtilities: Fix crash in StringToPath Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !3386
-
David E. DeMarle authored
06f2360b Use nullptr throughout now that we are in the c++11 era. 14fa33de fixup pointer usage in ospray tests Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Alvaro Sanchez <alvaro.sanchez@kitware.com> Merge-request: !3389
-
Ken Martin authored
65e8b459 fix issue with matplotlib comparing local vars as if they were pointers Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !3384
-
David E. DeMarle authored
-
Allison Vacanti authored
de21b057 Remove GLEW dependency from VTKM. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !3365
-
Ken Martin authored
67e054c9 mark ImmediateModeRendering as deprecated Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !3329
-
Robert Maynard authored
Previously vtkmlib headers would be installed twice, and source files where accidentally being installed too.
-
Shawn Waldon authored
-
David E. DeMarle authored
follow up from recent changes to vtkNew and vtkSmartPointer.
-
Robert Maynard authored
5ab57d2e vtkmContour respects the ComputeScalar variable Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !3382
-
Ken Martin authored
change to use the bool operator which is defined on the vtkSMartPyObject
-
Ken Martin authored
remove the code since they have been deprectaed a long time
-
Andrew Bauer authored
b3c566ed Changing vtkCellSizeFilter to output separate arrays for sizes Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !3370
-
T.J. Corona authored
-
T.J. Corona authored
This commit prepends the chain of polygon triangulation attempts present in vtkIntersectionPolyDataFilter with vtkPolygon::BoundedTriangulate(), since it may produce more well-formed meshes.
-
T.J. Corona authored
This commit switches the polygon triangulation method in vtkDelaunay2D from Triangulate() to BoundedTriangulate(), which can return more well-formed meshes.
-
T.J. Corona authored
vtkPolygon's EarCutTriangulation() method uses a priority queue to determine the order in which polygon vertices are clipped. This results in a reproducible triangulation that is orientation-free, but only allows for a single triangulation for a polygon. Since ear-cutting is a heuristic, there is no guarantee that the result from EarCutTriangulation() is the best (or even acceptable). UnbiasedEarCutTriangulation() is an ear cutting method that removes the use of a priority queue, and instead allows the caller to seed the method's start point with a value. With the ability to triangulate a polygon in multiple ways, BoundedTriangulate() accepts a tolerance value that restricts the ratio of the area of the smallest triangle to the area of the polygon. The method returns the first triangulation that satisfies this criterion.
-
- 02 Oct, 2017 12 commits
-
-
Robert Maynard authored
-
David E. DeMarle authored
9e0d7434 address compilation warnings b3c2dc89 Loosen the image comparison tolerance a bit. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3380
-
David E. DeMarle authored
the declspec warning is safe particularly as this is an internal class not intended to be part of the public API.
-
David E. DeMarle authored
Like other HyperTreeGrid tests, the profusion of lines from the cell wireframes brings out lots of differences in OpenGL's so the test tolerances need to be higher than the default.
-
Ken Martin authored
42f5aef7 Fix a potential crash whith vtkRenderWindowInteractor::FindPokedRenderer Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3354
-
Andrew Bauer authored
This breaks backwards compatibily but this is new enough that no new VTK version has been released since this was originally added. Addresses paraview/paraview#10433.
-
Ken Martin authored
Does not make sense for OpenGL2 and is not implemented Also deprecate PainterDelegate
-
Bastien Jacquet authored
1e579cd7 Predictable output for vtkTensorGlyph on non-symmetric tensors Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !3351
-
Robert Maynard authored
657d021e Replace VTK_OVERRIDE with override. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !3328
-
Andrew Bauer authored
1a0a64c6 Fixing typo that causes compile error Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3376
-
Allison Vacanti authored
-
Andrew Bauer authored
d474942b Fixing typo in vtkResampleWithDataSet documentation Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Sujin Philip <sujin.philip@kitware.com> Merge-request: !3374
-