Content-Length: 340262 | pFad | http://github.com/fastplotlib/fastplotlib/pull/773/commits/bd78247c64d3b1e7d4a6b51c8fd41f3fa1476e52

FB more event docs, make some things public by kushalkolar · Pull Request #773 · fastplotlib/fastplotlib · GitHub
Skip to content

more event docs, make some things public #773

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 70 commits into from
Apr 7, 2025
Merged
Changes from 1 commit
Commits
Show all changes
70 commits
Select commit Hold shift + click to select a range
50cf305
more docs on events
kushalkolar Mar 17, 2025
b07c4d3
add some events examples
kushalkolar Mar 24, 2025
ac98b83
make features public
kushalkolar Mar 24, 2025
bdd40ad
make subplot public
kushalkolar Mar 24, 2025
f5d0981
update w.r.t. feature being public
kushalkolar Mar 24, 2025
d2c3514
update tables
kushalkolar Mar 24, 2025
bd78247
update generate_api.py
kushalkolar Mar 24, 2025
e008c87
update guide
kushalkolar Mar 24, 2025
9ffba55
rename: FeatureEvent -> PropertyEvent
kushalkolar Mar 24, 2025
8919c59
expose Graphic
kushalkolar Mar 24, 2025
4d26b67
update legend
kushalkolar Mar 24, 2025
9999a56
tests, rename: FeatureEvent -> PropertyEvent
kushalkolar Mar 24, 2025
d6184e0
edit
kushalkolar Mar 24, 2025
8a0baa2
update
kushalkolar Mar 24, 2025
e9cae50
deleted: events_more.rst
kushalkolar Mar 24, 2025
58325f7
Lingering _featuees
kushalkolar Mar 24, 2025
adf096d
rename in api docs
kushalkolar Mar 25, 2025
f7433a6
rename
kushalkolar Mar 25, 2025
6911606
more examples
kushalkolar Mar 26, 2025
1451d14
update, and key event example
kushalkolar Mar 26, 2025
deb9411
black
kushalkolar Mar 26, 2025
d85028a
type annotations for event instances in examples
kushalkolar Mar 26, 2025
9e83f84
update faq
kushalkolar Mar 26, 2025
d0b86cb
add hover example
kushalkolar Mar 27, 2025
0225f15
Update examples
kushalkolar Mar 27, 2025
a0b24f2
add example
kushalkolar Mar 27, 2025
4ae7a4d
add drag example
kushalkolar Mar 27, 2025
0c20e73
update exmpales
kushalkolar Mar 27, 2025
1c9b74d
fix get_nearest
kushalkolar Mar 27, 2025
b3c14fb
update utils for docs
kushalkolar Mar 27, 2025
841a0ab
update doc
kushalkolar Mar 27, 2025
48202f0
fix
kushalkolar Mar 27, 2025
e8ad960
black
kushalkolar Mar 27, 2025
500704c
update drag_points
kushalkolar Mar 27, 2025
ab5f3c7
update
kushalkolar Mar 27, 2025
c2bd6bb
fix
kushalkolar Mar 27, 2025
3796c20
update
kushalkolar Mar 27, 2025
f43dcbe
better LinearRegionSelector example, fix calc center
kushalkolar Mar 29, 2025
1391103
add moving label example
kushalkolar Mar 31, 2025
8b113e3
add to conf
kushalkolar Mar 31, 2025
a109879
add readme
kushalkolar Mar 31, 2025
a52595d
update docs conf.py
kushalkolar Mar 31, 2025
d5c57ff
add paint_image example
kushalkolar Mar 31, 2025
15f0585
add controller examples
kushalkolar Mar 31, 2025
389fcff
fix
kushalkolar Mar 31, 2025
5b342e9
ipywidget example, update guide
kushalkolar Mar 31, 2025
9d9357e
update iw rgb arg
kushalkolar Mar 31, 2025
c6a13f1
add ipywidgets webp to guide
kushalkolar Mar 31, 2025
c0f8cb3
update linear_region_selectors_match_offsets.png after fix
kushalkolar Mar 31, 2025
ac8b95b
forgot to add non imgui screenshot
kushalkolar Mar 31, 2025
0d61ef3
update ipywidget examples
kushalkolar Apr 1, 2025
e53eb7f
docstring
kushalkolar Apr 1, 2025
543a028
plot helpers API docs should work now
kushalkolar Apr 1, 2025
8ce37f2
update switcher
kushalkolar Apr 1, 2025
df265e2
update switcher
kushalkolar Apr 1, 2025
e31a684
docstring
kushalkolar Apr 1, 2025
aab160d
start turning event tables to list of dicts instead of hard-coded rst…
kushalkolar Apr 1, 2025
b1efab1
update common features with table spec
kushalkolar Apr 1, 2025
bcdebc6
spelling
kushalkolar Apr 1, 2025
c0bb9b8
add code for list of dicts -> rst table, not yet tested
kushalkolar Apr 1, 2025
94bc92e
needs to be writeable
kushalkolar Apr 1, 2025
cc2b8da
replace == with npt.assert_almost_equal()
kushalkolar Apr 1, 2025
2bdf170
rename FeatureEvent -> GraphicFeatureEvent
kushalkolar Apr 7, 2025
1b80f29
GraphicFeatureEvent as top level import
kushalkolar Apr 7, 2025
1911eed
black
kushalkolar Apr 7, 2025
cd6f58c
graphic feature event tables
kushalkolar Apr 7, 2025
2c7bd84
stupid
kushalkolar Apr 7, 2025
fcf58f5
forgot to add things
kushalkolar Apr 7, 2025
9db6a5d
remove space
kushalkolar Apr 7, 2025
0fbaf42
black
kushalkolar Apr 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update generate_api.py
  • Loading branch information
kushalkolar committed Mar 24, 2025
commit bd78247c64d3b1e7d4a6b51c8fd41f3fa1476e52
7 changes: 4 additions & 3 deletions docs/source/generate_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import os

import fastplotlib
from fastplotlib.layouts._subplot import Subplot
from fastplotlib.layouts import Subplot
from fastplotlib import graphics
from fastplotlib.graphics import _features, selectors
from fastplotlib.graphics import features, selectors
from fastplotlib import widgets
from fastplotlib import utils
from fastplotlib import ui
Expand Down Expand Up @@ -238,7 +238,7 @@ def main():
)
##############################################################################

feature_classes = [getattr(_features, f) for f in _features.__all__]
feature_classes = [getattr(features, f) for f in features.__all__]

feature_class_names = [f.__name__ for f in feature_classes]

Expand Down Expand Up @@ -362,5 +362,6 @@ def main():
" utils\n"
)


if __name__ == "__main__":
main()








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/fastplotlib/fastplotlib/pull/773/commits/bd78247c64d3b1e7d4a6b51c8fd41f3fa1476e52

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy