From b134aad93cf21eb65e571e859f57c4ac635573a6 Mon Sep 17 00:00:00 2001 From: Evan Kiefl Date: Mon, 2 Sep 2024 17:17:01 -0700 Subject: [PATCH] checkpoint --- docs/conf.py | 2 +- docs/examples/30_degree_rule.pct.py | 5 +++++ docs/getting_started/script.md | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ee413767..b30f3ddd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 ---------------------------------------------------------- diff --git a/docs/examples/30_degree_rule.pct.py b/docs/examples/30_degree_rule.pct.py index a20e337d..a311a8ca 100644 --- a/docs/examples/30_degree_rule.pct.py +++ b/docs/examples/30_degree_rule.pct.py @@ -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)) diff --git a/docs/getting_started/script.md b/docs/getting_started/script.md index f7dd45a3..61670dca 100644 --- a/docs/getting_started/script.md +++ b/docs/getting_started/script.md @@ -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.