Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rougier/matplotlib-3d
Experimental 3D axis for matplotlib
https://github.com/rougier/matplotlib-3d
3d-engine matplotlib python scientific-visualization
Last synced: 6 days ago
JSON representation
Experimental 3D axis for matplotlib
- Host: GitHub
- URL: https://github.com/rougier/matplotlib-3d
- Owner: rougier
- License: bsd-2-clause
- Created: 2020-03-26T11:31:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-20T08:04:36.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T16:17:17.500Z (15 days ago)
- Topics: 3d-engine, matplotlib, python, scientific-visualization
- Language: Python
- Size: 36.5 MB
- Stars: 269
- Watchers: 11
- Forks: 35
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
# Experimental 3d axis for matplotlib
This experimental project is an attempt at providing a better and more
versatile 3d axis for [Matplotlib](https://matplotlib.org). The heart of the
code is explained in this blog post: [Custom 3D engine in
Matplotlib](https://matplotlib.org/matplotblog/posts/custom-3d-engine/).>
>
> Note that we cannot have a full 3d engine because we do not have a proper
> [zbuffer](https://en.wikipedia.org/wiki/Z-buffering) that allows to test
> individual pixels. This means we need to sort our points/lines/triangles in
> order to draw them from back to front. Most of the time, this does the trick
> but there exist some situations where it is impossible to avoid
> problems. For example, consider two triangles that intersect each other. In
> in such a case, we have to decide arbitrarily which triangle will be drawn on
> top of the other.[Read the documentation](doc/README.md)
# Install
You can install by pip command.
`pip install git+https://github.com/rougier/matplotlib-3d`