Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiefl committed Sep 3, 2024
1 parent 69f9deb commit b134aad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
# NOTE: Don't use this for excluding python files, use `autoapi_ignore` below
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "**.ipynb_checkpoints", "**.ipynb", "**README.md"]

# -- Global options ----------------------------------------------------------

Expand Down
5 changes: 5 additions & 0 deletions docs/examples/30_degree_rule.pct.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,3 +449,8 @@ def get_coordinates(system: pt.System):

# %% [markdown]
# Harder shots follow the *tangent line* (aka the line perpendicular to the line connected the balls' centers during contact) for longer, but they all converge to the same outgoing angle.

# %%
import matplotlib.pyplot as plt

plt.plot(np.arange(10))
2 changes: 1 addition & 1 deletion docs/getting_started/script.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ interface.show(shot)

## Next

Obviously this script is just the beginning. Pooltool offers much more than this, which means you have much more to learn. From here, I suggest you check out the [Resources](resources) page and dive into whatever topic interests you.
Obviously this script is just the beginning. Pooltool offers much more than this, which means you have much more to learn. From here, I suggest you check out the [Examples](examples) page and dive into whatever topic interests you.

0 comments on commit b134aad

Please sign in to comment.