-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
1,130 additions
and
628 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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
demo/demo.py: Package demo | ||
Copyright (C) 2020 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2020-2021 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
demo/demo_mpl.py: Package demo - matplotlib | ||
Copyright (C) 2020 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2020-2021 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
demo/demo_mpl_fast.py: Package demo - matplotlib accelerated | ||
Copyright (C) 2020 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2020-2021 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
docs/__init__.py: Docs root | ||
Copyright (C) 2020 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2020-2021 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the GNU Lesser General Public License | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{% extends "!layout.html" %} | ||
|
||
{% block menu %} | ||
|
||
{{ super() }} | ||
|
||
{% if sidebar_external_links %} | ||
|
||
<p class="caption"> | ||
<span class="caption-text"> | ||
{% if sidebar_external_links_caption %} | ||
{{ sidebar_external_links_caption }} | ||
{% else %} | ||
External links | ||
{% endif %} | ||
</span> | ||
</p> | ||
|
||
<ul> | ||
{% for text, link in sidebar_external_links %} | ||
{% if hasdoc(link) %} | ||
<li class="toctree-l1"><a href="{{ pathto(link) }}">{{ text }}</a></li> | ||
{% else %} | ||
<li class="toctree-l1"><a href="{{ link }}">{{ text }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
|
||
{% endif %} | ||
|
||
{% endblock %} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Inventory of ``backends`` | ||
========================= | ||
|
||
All backends can be accessed via the ``backends`` dictionary, which represents the inventory of backends. | ||
|
||
.. code:: ipython | ||
>>> from bewegung import backends | ||
>>> backends.keys() | ||
dict_keys(['drawingboard', 'pillow', 'datashader', 'cairo', 'matplotlib']) | ||
>>> [backend for backend in backends.values()] | ||
[<DrawingBoardBackend>, <PillowBackend>, <DatashaderBackend>, <CairoBackend>, <MatplotlibBackend>] | ||
Backends are "lazy" objects. They only import the underlying library if actually used. For most intents and purposes, working with :meth:`bewegung.Video.canvas` is sufficient. Further details about the common structure of backends are provided in the :ref:`sections on custom backends <custombackends>`. |
Oops, something went wrong.