This project is mirrored from https://gitlab.kitware.com/vtk/vtk-m.git.
Pull mirroring updated .
- 31 Oct, 2018 5 commits
-
-
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
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 9 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
-
- 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 2 commits
-
-
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
-
Ken Martin authored
b3e3cc31 add audio support for ffmpegvideosource Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4838
-
- 27 Oct, 2018 3 commits
-
-
Utkarsh Ayachit authored
vtkOpenGLContextDevice2D now respects tile-scale/tile-viewport in `vtkOpenGLContextDevice2D::SetClip`. This addresses paraview/paraview#18365.
-
Utkarsh Ayachit authored
vtkOpenGLContextDevice2D had incorrect header doc causing confusion. Fixed to match superclass' doc as well as the implementation.
-
Bill Lorensen authored
d253e902 COMP: TestPDFTransformedTest missing include tuple. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !4839
-
- 26 Oct, 2018 8 commits
-
-
Kenichiro Yoshimi authored
-
Kenichiro Yoshimi authored
-
Bill Lorensen authored
On some platformas, the use of std::tie requires the include file <tuple>. For example, the c++ compiler version 4.8.4 on Ubuntu 14.04 failed to compile. Since this test is only invoked if ghostscript is present, it is possible that other test platforms may fail to compile if a configuration changes.
-
Brad King authored
e4585fc1 Fix a link error Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4837
-
Ken Martin authored
Also add threding option for the decoder
-
Ben Boeckel authored
54910fc0 vtkQtLabelRenderStrategyInternals: expose in a header Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !4833
-
Ben Boeckel authored
0c8cb137 vtkLabelPlacementMapper: fix in-frame detection Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !4836
-
David E. DeMarle authored
Recent update from qt5_use_modules to target_link_libraries introduced a link error on a dashboard where qt5openglextensions was not found.
-