This project is mirrored from https://gitlab.kitware.com/vtk/vtk-m.git.
Pull mirroring updated .
- 01 Nov, 2018 7 commits
-
-
Cory Quammen authored
0ca613af Fix compiler warnings 0502cdf4 Add CELL_COUNT_ASCENDING RegionIdAssignmentMode 3ae247c9 Update ParallelConnectivity test to exercise RegionIdAssignmentMode be24b724 Add support for reordering RegionIds by RegionIdAssignmentMode 97ba574f Add RegionId assignment mode Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !4812
-
Lipsa, Dan authored
dd35a2ed Fix CityGML reader warnings. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4857
-
Lipsa, Dan authored
-
Ken Martin authored
444593a9 fix some cppcheck warnings Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4856
-
Ken Martin authored
uninitialized member variables
-
Ken Martin authored
54feb523 DeepCopy performs deep copy of vtkInformation and vtkMatrix4x4 7247c933 vtkLight DeepCopy method copies all member data Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !4845
-
Will Schroeder authored
c809ae19 Added high-performance contouring algorithm Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4848
-
- 31 Oct, 2018 9 commits
-
-
Ken Martin authored
c57b0ff8 visual studio warns about std::copy so manually copy Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !4853
-
Will Schroeder authored
This filter is a specialized, threaded, high-performance implementation of an isocontouring algorithm for unstructured grids. In particular, it generates output triangles from 3D linear cells: vtkTetrahedron, vtkHexahedron, vtkVoxel, vtkWedge, and vtkPyramid. The commit includes supporting classes for edge-based point merging of coincident points, and modification to some VTK cells in order to extract edge and case tables in support of isocontouring.
-
Bill Lorensen authored
2f194ed1 Merge branch 'OBJExporterRefactorTesting' of https://gitlab.kitware.com/lorensen/vtk into OBJImporterRefsctorTesting 97552d26 ENH: Refactor testing 617852b8 ENH: Refactor testing Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4851
-
Ken Martin authored
Just avoid vs warning on this header
-
Andreas Buykx authored
-
Ken Martin authored
00768e6b Cleanup audio callback to not use nested class Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4852
-
Ken Martin authored
Since c++ still cannot forward declare nested classes
-
Bill Lorensen authored
Merge branch 'OBJExporterRefactorTesting' of https://gitlab.kitware.com/lorensen/vtk into OBJImporterRefsctorTesting
-
Bill Lorensen authored
Change tests from using ExternalData_add_test to vtk_add_test_cxx. Added baselines for the tests. Ghe OBJImport tests were not being run.
-
- 30 Oct, 2018 10 commits
-
-
Bill Lorensen authored
Change tests from using ExternalData_add_test to vtk_add_test_cxx. Added baselines for the tests. Ghe OBJImport tests were not being run.
-
Bill Lorensen authored
ce4f6fc9 BUG: OBJImporter does not handle multiple groups using same material 517aed2b BUG: vtkOBJImporter does not handle multiple groups using same material e1fcad45 BUG: vtkOBJImporterr does not handle multiple groups using same material Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4821
-
Bill Lorensen authored
The original code assumed that each material could only be used by one actor (group). There is no mention of this restriction in the Wavefront obj specification. The solution is to use a map of vectors to map between material and actors. BUG: vtkOBJImporter fails if vt are present but texture indices not present Another bug was discovered while addressing the original issue. If texture coordinates are present via "vt" command but texture indicies are not defined for the faces, the actor was skipped. The solution is to add a boolean variable that indicates whether texture indicies are defined. If there are no texture indicies, do not add TCoords to the PointData. LocalWords: PointData Oct OBJImporterBug gitlab indicies TCoords
-
Bill Lorensen authored
The original code assumed that each material could only be used by one actor (group). There is no mention of this restriction in the Wavefront obj specification. The solution is to use a map of vectors to map between material and actors. New test added. BUG: vtkOBJImporter fails if vt are present but texture indices not present Another bug was discovered while addressing the original issue. If texture coordinates are present via "vt" command but texture indices are not defined for the faces, the actor was skipped. The solution is to add a boolean variable that indicates whether texture indices are defined. If there are no texture indices, do not add TCoords to the PointData.
-
Bill Lorensen authored
The original code assumed that each material could only be used by one actor (group). There is no mention of this restriction in the Wavefront obj specification. The solution is to use a map of vectors to map between material and actors. BUG: vtkOBJExporter fails if vt are present but texture indices not present Another bug was discovered while addressing the original issue. If texture coordinates are present via "vt" command but texture indices are not defined for the faces, the actor was skipped. The solution is to add a boolean variable that indicates whether texture indices are defined. If there are no texture indices, do not add TCoords to the PointData.
-
Bill Lorensen authored
0dde5662 BUG: OBJImporter fails if a textue map occurs more than once. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4844
-
Michael Migliore authored
87122d3c Add more informations when glew init failed Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Nicolas Vuaille <nicolas.vuaille@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !4846
-
Michael Migliore authored
-
Bill Lorensen authored
If an mtl file refers to a texture map file more than once, the generated texture filename consists of the original name dupilcated n times. For example: newmtl material0 map_Ka abc.png map_Kd abc.png map_Ks abc.png will try open a fileabc.pngabc.pngabc.png
-
Andreas Buykx authored
The deep copy method of vtkLight did not copy all member data, causing the copy to yield very different lighting.
-
- 29 Oct, 2018 13 commits
-
-
David E. DeMarle authored
e6713b43 Add missing override adaba0b6 Fix an unused var warning in this class f6de9158 Correct function name ad2cbcb5 Replace the tedious copying with ShallowCopy 2075a749 Fix wrong comment out 9db34c27 Add vtkRemoveDuplicatePolys class Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David E. DeMarle <dave.demarle@kitware.com> Acked-by:
Roman Grothausmann <grothausmann.roman@mh-hannover.de> Merge-request: !4265
-
David E. DeMarle authored
a0a1f0ed ShallowCopy of vtkAbstractMapper hierarchy made virtual Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !4813
-
David E. DeMarle authored
f0108c69 move the new postfix setting to advanced tab Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !4841
-
Mathieu Westphal authored
0c979f18 Fix long array in legacy reader/writer Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Michael Migliore <michael.migliore@kitware.com> Acked-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !4816
-
Mathieu Westphal authored
Legacy writer used to write "long" array, which is not a fixed size data. This can causes issues, we now write int or int64 array based on the actual size of the long.
-
Ben Boeckel authored
573dc6a5 vtkPythonArgs: use Py_ssize_t for argument indices Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !4831
-
Michael Migliore authored
0724d4ba Simplify initialization of vtkAbstractPolyDataReader based readers Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Michael Migliore <michael.migliore@kitware.com> Acked-by:
Nicolas Vuaille <nicolas.vuaille@kitware.com> Merge-request: !4829
-
Ben Boeckel authored
This is the actual type for indices in Python.
-
David E. DeMarle authored
-
Haocheng LIU authored
8b44a8bc Expose vtkm coordinate tranform filter Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !4630
-
Michael Migliore authored
96b8a4fb Fix panoramic projection when camera view up is not orthogonal Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Acked-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !4825
-
Mathieu Westphal authored
9c427db5 Adding LongLong and UnsignedLongLong to RandomAttributes Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Nicolas Vuaille <nicolas.vuaille@kitware.com> Acked-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !4840
-
Mathieu Westphal authored
This Adds LongLong and UnsignedLongLong to the types vtkRandomAttributesGenerator can generate
-
- 28 Oct, 2018 1 commit
-
-
Utkarsh Ayachit authored
4ce9bce4 vtkOpenGLContextDevice2D: respect tile-scale/tile-viewport. 89a15679 Fix incorrect doc in vtkOpenGLContextDevice2D. 0523c4fb Add `vtkRect::Intersect`, `vtkRect::MoveTo` APIs. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !4835
-