-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Various tidyups and rewordings of docs.
- Loading branch information
Showing
6 changed files
with
24 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
include README.rst | ||
include README.md | ||
include LICENSE.txt | ||
recursive-include vtkplotlib/data * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
# Stuff that needs sorting | ||
|
||
- DOCS | ||
- Make `vpl.view` less useless. | ||
- Add type and array shape checking. | ||
- Use resize events in `vpl.text` so that it scales with the window. | ||
- Edit `TextureMap` so that it doesn't flip the image. Or better, use VTK's. | ||
- Move the mapper to the `PolyData` class. | ||
- Add a `quick_show()` method to `BasePlot`. | ||
- Sort the `mapper.SetScalarMode` hoohah. | ||
- Implement a `write` in image_io.py. | ||
- Fix test_optional_dependency_fallbacks.py so that it actually ignores the optional libraries. I think this requires all `LIBRARY_AVAILABLE` bool variables to become functions rather than attributes. | ||
- Make `PolyData` not use `deepcopy` in `numpy_to_vtk`. | ||
- Add _vtk_errors.py handling to image_io.py. | ||
- Add `cmap` as a `property` of `BasePlot`. | ||
- `mesh_plot` the pycollada and meshio classes. | ||
- Change `plot.set_scalar_range` to a `property`. | ||
- Fix cleanup of figures so it doen't issue the warnings on close. I think this is just `QtFigure`. | ||
- [ ] More DOCS | ||
- [ ] Make `vpl.view` less useless. | ||
- [ ] Add type and array shape checking. | ||
- [ ] Use resize events in `vpl.text` so that it scales with the window. | ||
- [ ] Edit `TextureMap` so that it doesn't flip the image. Or better, use VTK's. | ||
- [ ] Fix test_optional_dependency_fallbacks.py so that it actually ignores the optional libraries. I think this requires all `LIBRARY_AVAILABLE` bool variables to become functions rather than attributes. | ||
- [ ] Add _vtk_errors.py handling to image_io.py. | ||
- [ ] `mesh_plot` the pycollada and meshio classes. | ||
- [x] Fix cleanup of figures so it doen't issue the warnings on close. I think this is just `QtFigure`. | ||
- [x] Work out why QtFigures are no longer re-showable. | ||
- [ ] Setup a Qt/VTK abstracted timer for animation use (using a VTK timer crashes when Qt is used). | ||
- [ ] Document accessable VTK attributes so people VTK savy users can find them. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,6 @@ | |
author_email='[email protected]', | ||
license='GNU version 3.0', | ||
packages=find_packages(), | ||
# package_dir={'vtkplotlib': 'vtkplotlib'}, | ||
# package_data={'vtkplotlib': ['data/icons/*', | ||
# 'data/models/*']}, | ||
# data_files=[('icons', ['data/icons/*']), | ||
# ('models', ['data/models/*'])], | ||
include_package_data=True, | ||
install_requires=[ | ||
"vtk", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters