- 10 May, 2018 1 commit
-
-
Ken Martin authored
When handling a 3d volume it was accessing too far when there was cell data present. (cherry picked from commit 428d603a)
-
- 26 Apr, 2018 1 commit
-
-
Ken Martin authored
When handling a 3d volume it was accessing too far when there was cell data present.
-
- 28 Mar, 2018 1 commit
-
-
Andrew Bauer authored
-
- 27 Mar, 2018 1 commit
-
-
luz.paz authored
Found via `codespell` and `grep`
-
- 20 Mar, 2018 3 commits
-
-
Sean McBride authored
154 occurances of ;;\n
-
Sean McBride authored
This required some clean up, because the automatic changes borked a couple of files, but mostly resulted in stupid whitespacing. A few find/replace fixed things up. There are now some duplicate semis because it did changes like: ~AMRIndexIterator() override{}; to ~AMRIndexIterator() override= default;; Note there was a pointless semi before, which clang-tidy didn’t expect / account for. My next commit will remove them.
-
luz.paz authored
Found via `codespell` and `grep`
-
- 08 Mar, 2018 1 commit
-
-
Sean McBride authored
I was surprised how many there were. But no bugs at least, as best as I could tell. Removed a few useless semi-colons that were nearby.
-
- 29 Jan, 2018 1 commit
-
-
luz.paz authored
Found via `codespell -q 3 -I ../vtk-whitelist-words.txt --skip="./ThirdParty,./Utilities"`
-
- 03 Jan, 2018 1 commit
-
-
luz.paz authored
found via `codespell`
-
- 27 Dec, 2017 1 commit
-
-
Unknown authored
includes grammar and uniformity fixes as well.
-
- 20 Dec, 2017 1 commit
-
-
Ben Boeckel authored
-
- 19 Dec, 2017 1 commit
-
-
Sean McBride authored
Found with regexes: vtkBooleanMacro.*int\) vtkBooleanMacro.*int \)
-
- 15 Dec, 2017 2 commits
-
-
Utkarsh Ayachit authored
Cleanup imports and usages of the same in LagrangeGeometricOperations
-
Unknown authored
Mostly removing superflous double whitespace on both user-facing and non-user-facing strings. Some misc. typo fixes sprinkled in as well.
-
- 14 Dec, 2017 1 commit
-
-
Ben Boeckel authored
-
- 11 Dec, 2017 1 commit
-
-
Ben Boeckel authored
Now that Tcl wrapping is gone, all wrapping tools now use `WRAP_EXCLUDE_PYTHON` instead.
-
- 08 Dec, 2017 1 commit
-
-
Utkarsh Ayachit authored
Use std::unordered_map & std::unordered_set instead of vtksys::hash_map and vtksys::hash_set. Since we now use C++11, we can use these new standard library containers.
-
- 05 Dec, 2017 2 commits
-
-
Ben Boeckel authored
-
Ben Boeckel authored
-
- 01 Dec, 2017 1 commit
-
-
Sean McBride authored
For now, vtkTypeBool is just a typedef for int, but one day it can become a real bool. Found with a regex: vtkBooleanMacro.*int\)
-
- 15 Nov, 2017 1 commit
-
-
Ben Boeckel authored
Now that instantiators are gone, nothing cares about the ABSTRACT property.
-
- 10 Nov, 2017 1 commit
-
-
Utkarsh Ayachit authored
Building on 8de09365 to not warn for 0 cells. 0 cells is not a warnable offense. Also updated UnitTestDataSetSurfaceFilter test.
-
- 09 Nov, 2017 1 commit
-
-
Utkarsh Ayachit authored
Having 0 cells is not a warning, it happens.
-
- 06 Nov, 2017 1 commit
-
-
Unknown authored
Typos fixes for documentation and source code comments. This commit is a follow up to: vtk/vtk!3424
-
- 20 Oct, 2017 1 commit
-
-
David Thompson authored
-
- 14 Oct, 2017 1 commit
-
-
David Thompson authored
+ Skip tests where the render window is generating images the wrong size. + Use stupid parentheses to make cppcheck happy.
-
- 11 Oct, 2017 2 commits
-
-
David Thompson authored
-
David Thompson authored
-
- 09 Oct, 2017 3 commits
-
-
David Thompson authored
-
David Thompson authored
... so try adding them explicitly.
-
-
- 05 Oct, 2017 1 commit
-
-
T.J. Corona authored
-
- 04 Oct, 2017 1 commit
-
-
Kitware Robot authored
Now that VTK requires a C++11 compiler we can ditch using custom typedefs to wrap =delete;
-
- 02 Oct, 2017 1 commit
-
-
Kitware Robot authored
Now that VTK requires a C++11 compiler we can ditch using custom typedefs
-
- 29 Sep, 2017 1 commit
-
-
Andrew Bauer authored
Adding in functionality to allow inserting vtkNew objects into stl containers of vtkSmartPointer objects as well as comparisons between vtkNew objects and raw pointers. Also removing Get() and GetPointer() calls from vtkNew objects since in most instances we can just pass in the vtkNew<> object instead of having to use the Get() or GetPointer() methods to get the raw pointer.
-
- 21 Sep, 2017 1 commit
-
-
This commit adds support for Lagrange cells of the following shape: curve, triangle, quadrilateral, tetrahedron, hexahedron, and wedge. The new cell types may have arbitrary order, up to a compile-time maximum of 10. The maximum may be changed easily. The order is inferred from the number of points defining the cell and is assumed to be the same along each coordinate axis. Visualization operations that cells must provide (contouring, clipping, cutting) are implemented by approximating each higher-order cell as a collection of multi-linear "primitive" cells of the same shape. Note that the wedge element, when asked for boundary faces, returns faces with outward-pointing normals. This is not the same convention as vtkWedge but is the same as other VTK cell shapes. See the vtkCellTypeSource class in vtkFiltersSources for an example of how cell connectivity is specified. In general, the shape corner points are specified first, matching the linear cell counterparts. Then points on edges and faces bounding the shape are listed. Finally, interior points are listed. This will allow simpler connectivity entries in the future where points on edges and faces may only require 2 numbers each instead of a number proportional to the order raised to the parametric dimension of the boundary. T. J. Corona provided the triangle and tetrahedron implementations.
-
- 28 Aug, 2017 1 commit
-
-
Ken Martin authored
As above for the GeometryFilter previously rectilinear grids were always producing float which is bad for large coordinate systems.
-
- 24 Aug, 2017 1 commit
-
-
For such grids, no output was generated. We now use the specialized surface filters to extract lines. We add a new Filters/Geometry/Cxx test for testing the feature.
-
- 26 Jul, 2017 1 commit
-
-
updating the tests to follow modern standards
-