- Aug 05, 2015
-
-
David C. Lonie authored
-
- Jul 22, 2015
-
-
Bill Lorensen authored
In the early days of VTK, support for stl was not portable. vtksys_stl and vtksys_ios provided a portable implementation of the stl. Now, all of the VTK supported compilers have portable stl implementations. This patch: 1) Replaces the vtksys_ios:: with std::. 2) Replaces the vtksys_stl:: with std::. 3) Removes "using" statements for stl
-
- Jul 06, 2015
-
-
David C. Lonie authored
This is a common issue, worth notifying devs when something is amiss.
-
David C. Lonie authored
...rather than anisotropic scaling, since we can't render fonts like that anyway.
-
- Jun 26, 2015
-
-
David C. Lonie authored
Now vtkAxis will show the same number of ticks and the same relative text size when magnifying the image. Text will still be a little funky if the scaling is anisotropic, but at the moment our freetype engine doesn't support anisotropic dpi (not sure if the MPL backend can or not). New API: vtkContextScene::GetLogicalTileScale() returns the renderwindow tilescale or (1, 1) depending on whether ScaleTiles is enabled. There are some random fixes where vtkAxis objects were being used without a scene, which led to segfaults when trying to look up the tile scale internally.
-
- Jun 22, 2015
-
-
David C. Lonie authored
There were a couple spots that were calculating unused values. Moved them to only be calculated when needed.
-
David C. Lonie authored
-
- Jun 12, 2015
-
-
Utkarsh Ayachit authored
Users need an ability to add plots to a Chart but not have it show up in the legend. This commit adds support for that. This is needed to address the features requested in BUG #15512.
-
- Jun 08, 2015
-
-
Dan Lipsa authored
-
- Jun 05, 2015
-
-
Utkarsh Ayachit authored
Fixed ['vtkPlotArea::vtkTableCache' has a field 'vtkPlotArea::vtkTableCache::SortedPoints' whose type uses the anonymous namespace] warning.
-
- Jun 04, 2015
-
-
Dan Lipsa authored
The numbers of digits in the exponent for a float printed in scientific notation is undefined. We get 2 or 3 digits on different platforms.
-
- Jun 01, 2015
-
-
Dan Lipsa authored
Remove all code marked with VTK_LEGACY... from before vtk-6.1 (2014-01-21)
-
- May 19, 2015
-
-
Ken Martin authored
-
Ken Martin authored
-
- May 18, 2015
-
-
Ken Martin authored
-
- May 12, 2015
-
-
Utkarsh Ayachit authored
-
Utkarsh Ayachit authored
Adding a new plot to plot a region named, vtkPlotArea. This can be used to plot a region enclosed between two series. Also added a new test, TestAreaPlot, to test this new plot.
-
Utkarsh Ayachit authored
Plots may do extra work when axis' Mtime changes. Don't change its Mtime unless absolutely needed.
-
- May 01, 2015
-
-
Ken Martin authored
OpenGL 3.2 does not support line width greater than 1 although many drivers do support it. This adds valid images for cases where line width is greater than 1.0 Also minor VisualStudio error check
-
- Apr 16, 2015
-
-
David C. Lonie authored
-
- Apr 11, 2015
-
-
Julien Finet authored
-
- Apr 09, 2015
-
-
David C. Lonie authored
-
- Apr 02, 2015
-
-
Sean McBride authored
Fixed all clang -Wimplicit-fallthrough warnings: - Some fixed by adding missing breaks - Other fixed by adding VTK_FALLTHROUGH statement Under (modern) clang with C++11: #define VTK_FALLTHROUGH [[clang::fallthrough]] Otherwise: #define VTK_FALLTHROUGH ((void)0) VTK_FALLTHROUGH serves two purposes: - under clang, suppresses -Wimplicit-fallthrough warnings - makes code more self-documenting
-
Julien Finet authored
This was sometimes happening in vtkChart::SELECTION_COLUMNS mode.
-
Julien Finet authored
It shall not crash when no input is given to the histogram plot.
-
Julien Finet authored
-
Julien Finet authored
If off, it prevents the plot from being selected.
-
Julien Finet authored
A point list can define a poly line or multiple line segments when points are grouped in pairs.
-
- Apr 01, 2015
-
-
Ken Martin authored
Also a few tweaks to get closer to OpenGL 32 support for mesa.
-
- Feb 16, 2015
-
-
Sean McBride authored
Change-Id: I2d81fe807e22d50913a57fa63c934deadc8e0787
-
Sean McBride authored
Fixes cppcheck warning, should be a little faster Change-Id: I24ebe2085e2f1c771d2a83fba6ebfb8761cfb9ab
-
- Jan 14, 2015
-
-
Julien Finet authored
Sometimes vtkPlotPoints is not added as a plot into a chart. This is the case vtkPlotFunctionalBag. Therefore when calling Update(), there can be no Axis. Change-Id: I5ccd256173831e31b048b732a6021286266e530f
-
- Jan 09, 2015
-
-
Julien Finet authored
Fix regression from 520548c7 Change-Id: I79c8169b348d211f9abc109768c6586a79a9b911
-
- Jan 06, 2015
-
-
Ken Martin authored
TestChartXYZ test fails on various platforms. It turns out it is failing due to floating point issues. Basically 1) By default the plot data points define the bounds of the axes for the chart 2) the axes define the plot area (clip stuff outside that) 3) which defines the clipping plane equations 4) which can in turn clip the original data points subject to floating point precision This is what is happening (FYI, the point that disappears in the middle is actual on the boundary in the depth axis). This patch “fixes” the test by defining axes that are slightly bigger than the data and replacing the valid image. Change-Id: I25e7f05736f274ffc16633d8110767b9a5a5907b
-
- Dec 23, 2014
-
-
Utkarsh Ayachit authored
Change-Id: I6512c3c8cc441464ec5d093dca9852f1a30acb6b
-
- Dec 19, 2014
-
-
Julien Finet authored
Convenience methods are exposed for plots in vtkChartXY Change-Id: Iccccc18011b74314af3fcd1474ac792a15627ceb
-
Julien Finet authored
Handle the selection as a list of selected plots instead of points. Change-Id: I13223a8a771a977b2813cd90104f1f6e03bd37de
-
- Dec 18, 2014
-
-
Sean McBride authored
Used the following command: find . \( -iname *.h -and -type f \) -exec perl -pi -w -e 's/__vtk(.*)_h/vtk$1_h/g;' {} \; Fixes many, but not all, clang -Wreserved-id-macro warnings. Change-Id: I694ff053cb204c70e37b261296f496064d91fc07
-
- Dec 10, 2014
-
-
Sean McBride authored
Removed other checks which are making it think other things could be null. Looking elsewhere in these files, many other places assume these things aren’t null. Also fix a call to GetMaximum that should have been GetMTime. Change-Id: Ie880a0992b64ce4389ab9b40d48aa32692595362
-
- Dec 09, 2014
-
-
Joachim Pouderoux authored
Those functions will be used for a PV improvement. Change-Id: Idb4f4fdd2558d6cb7b7c936697e923fd7ea3ff3a
-