- Jun 12, 2013
-
-
Dave DeMarle authored
Change-Id: Ied560e74530a5c656121c8a0eb8d4a64526aeda6
-
Kyle Lutz authored
This fixes an issue when calculating the bounds of good points in the vtkPlotPoints class. Change-Id: I0ce811100057ddbfd52ba3827e2e4aef92a89927
-
Kyle Lutz authored
This fixes a bug in which the trailing good points in a data set would be skipped. Change-Id: I5686c1b1c5ec3e77d29cd63327bdbd98702472bc
-
- Jun 11, 2013
-
-
Dave DeMarle authored
Change-Id: I3e519825e71c5f4400ad869bda624a7399989d11
-
Dave DeMarle authored
Change-Id: I8f5dcabc7a9c6aaef26e897e337b23d0ee1fa9f2
-
Marcus D. Hanwell authored
The ExternalMoleculeMacros should ensure that the module data files are generated in the build tree of the external module, rather than polluting the VTK tree they are building against. This relies on the vtkModuleAPI using CMAKE_MODULE_PATH for the original module files. Change-Id: If134458e014d29f2cd432e2f9248b5c13b50c96b
-
Dave DeMarle authored
Change-Id: If6d31f4d31afad729c2611c0959d8962f84980d5
-
Bill Lorensen authored
With BUILD_EXAMPLES:ON and BUILD_TESTING:OFF, the Examples should compile. To configure VTK with BUILD_EXAMPLES:ON and BUILD_TESTING:OFF, from an empty build tree, cmake -DBUILD_TESTING:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=Release vtk_src_tree NOTE: If you have already configured VTK with default settings, you must clean the build tree and rerun cmake with the above setting. Otherwise, bogus tests will remain. Conflicts: Examples/IO/Cxx/CMakeLists.txt Examples/ImageProcessing/Cxx/CMakeLists.txt Examples/Medical/Cxx/CMakeLists.txt Examples/Modelling/Cxx/CMakeLists.txt Examples/VisualizationAlgorithms/Cxx/CMakeLists.txt Examples/Widgets/Cxx/CMakeLists.txt Change-Id: I996065a30aab43cca630a369b39d748de728039b
-
Dave DeMarle authored
Install more cmake infrastructure to build external modules from install tree. Update vtkLocal example to modular VTK mechanics. Note: wrapped modules still have problems Change-Id: I2a46fc2f3ec32e05c986fa4cc92f3ad35ee7c12a
-
- Jun 07, 2013
-
-
Dave DeMarle authored
Change-Id: I249cb21d79e679321b73a5a6f5bceb879be30a64
-
Kyle Lutz authored
This adds code to skip the rendering of bad points in vtkPlotLine and vtkPlotPoints. Also allows adding additional bad points with a mask array. This is used by the plot-over-line filter in ParaView to skip rendering of points which are not a part of the data set. Change-Id: I70b5caadeb21a8080b34b6ca9b24dfcd4b0f19f6
-
Andrew Bauer authored
When importing VTK through Python without running vtkpyython, Python will already be initialized. This gives a warning for that but it should be taken out. This commit gets rid of that undesired warning. Change-Id: Id1aaf661de25f0c688a34a3c6d747f30283deb24
-
Dave DeMarle authored
Change-Id: I0a7fe4c1604a21dcb6b365ba5eb244d7372e157a
-
Dave DeMarle authored
Change-Id: I9aab7796b955c3281fcd78d4b4bdcb7d5965644d
-
Dave DeMarle authored
Change-Id: I293912a70f94cb50f045bf32a97d5219c3e644c3
-
- Jun 05, 2013
-
-
Dave DeMarle authored
Change-Id: If84aee62312408127e153bd55e9cc65785f1eac5
-
Dave DeMarle authored
Change-Id: I451626004ef93bf1e42f393c6af8f87cf06dec57
-
Luca Barbato authored
av_new_stream was changed to avformat_new_stream in ffmpeg 53.17. Change-Id: Id31f57bf5e5cb67c439cdbc4f458471acd163abd
-
- Jun 04, 2013
-
-
Dave DeMarle authored
It appears libxml2 uses gtk-doc instead of doxygen and that clang -Wdocumentation follows include files across libraries. So our normal third party module warning suppression won't work. Change-Id: Ic53045a570aa97c77352b5585dacd8cc47342895
-
David Thompson authored
This will increase the size of fonts used on displays with high pixel densities. Also, this changes the signature of vtkTextActor::GetBoundingBox() to take a vtkViewport. Since this is a new method for VTK6, it is better to fix it now; having it pass a NULL viewport pointer internally was causing crashes. Finally, vtkTextActor::SetConstrainedFontSize() should take font scaling into account. Change-Id: I3cc99f99798da96f5c8e9249538ba269216e302a
-
- May 31, 2013
-
-
Dave DeMarle authored
Change-Id: I08fa5337157eda3867866956833ff80445ab70b5
-
- May 28, 2013
-
-
David Thompson authored
The BuildTime member is not being updated when the scalar bar layout is recalculated, causing layouts to be recomputed every time the bar is rendered. Change-Id: Ib5f8e69573383d2c7cf04ca9cfb18b70fbc40dcb
-
Anton Gladky authored
Change-Id: Id74688bcfeefae3c5904e0719d498a185930220e
-
- May 23, 2013
-
-
Dave DeMarle authored
Change-Id: I8233c8cbb425523d774d32032956e767b64524a5
-
Utkarsh Ayachit authored
vtkImageAppend failed when the image data didn't have any point-arrays marked as scalars. Though vtkImageAppend's execution handled that case correctly, the initialization did not. This patch fixes the initialization code. Change-Id: I9207646b13038a96a26051fc3aed6d554a55aaf3
-
- May 22, 2013
-
-
Utkarsh Ayachit authored
There was no way to know if vtkIOMovie had OggTheora support enabled. Hence adding a vtkIOMovieConfigure file that has this configuration made available. Now when OggTheora support is available, vtkIOMovieConfigure.h defines VTK_HAS_OGGTHEORA_SUPPORT. Change-Id: I1efe54cb43f3ea09ab36a7bfa5a6a13d9b5c0593
-
- May 20, 2013
-
-
Dave DeMarle authored
Change-Id: I77e1b3b31a1392fb2bb2031f1ec77cbf8234cc9e
-
Andrew Maclean authored
In order to use functions like SetTableValue(2, "Blue") in a lookup table or other SetColors in derived classes in the same manner, these methods should be virtual. This commit just makes the relevant Set methods virtual. In the case of vtkProperty, the definition of SetColor(double a[3]) has been moved into vtkProperty.cxx, the rationale is that, in VTK classes, definitions occur in the implementation file not the header file. Change-Id: I89fee8eb4902e0847114b068374c3bff0bf10b9d
-
Dave DeMarle authored
-
- May 17, 2013
-
-
Utkarsh Ayachit authored
vtkXMLMultiBlockDataWriter was not saving out names for leaf nodes the the mulitblock dataset. Names were only being saved for non-leaf nodes. Fixed that. Change-Id: If68a32d64ad5eab2c5f107a236cba6dfecfe125d
-
- May 16, 2013
-
-
Yumin Yuan authored
The ExtractOnlyBoundaryCells is not working properly due to some logic errors in deciding when to extract cells if both ExtractBoundaryCells and ExtractOnlyBoundaryCells are on. Fixed it. Change-Id: I0574c672507ca610b1e77272d12f4e8acc3efa0c
-
- May 14, 2013
-
-
Xiaoxiao Liu authored
a788e7ff fix Newick reader for named root vertex
-
Xiaoxiao Liu authored
156390e9 Another approach to fix this degenerate case 110169fd FIX: for degenerate tree with a single leave.
-
Marcus D. Hanwell authored
125a81d2 Only add the headers that were WRAP_SPECIAL
-
Bill Lorensen authored
992028b0 COMP: Revert tcl precision to default value
-
Chris Harris authored
be10a33b Install vtk.jar to lib directory
-
Utkarsh Ayachit authored
8d3a85e6 Fix unused variable warning
-
Dave DeMarle authored
Change-Id: I924bbf674d6b5a78eb698a686bf6f49170664328
-
Dave DeMarle authored
99e86323 Add RunStringWithConsoleLocals() to vtkPythonInteractiveInterpreter
-