-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
0d4cbc8
commit 4373452
Showing
360 changed files
with
27,761 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 8cec77dba2f55ad6c40a55d3c6a457fb | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.98 KB
0.7.2/.doctrees/explanations/decisions/0001-record-architecture-decisions.doctree
Binary file not shown.
Binary file added
BIN
+6.66 KB
0.7.2/.doctrees/explanations/decisions/0002-switched-to-python-copier-template.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+104 KB
...wnloads/03d02dd7fcbfa209b8e8fc653cd48fe9/why-squash-can-change-path-3.hires.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
0.7.2/_downloads/03df8facf6b141a80c01c64943a8d53d/why-squash-can-change-path-1.py
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,5 @@ | ||
from scanspec.specs import Line | ||
from scanspec.plot import plot_spec | ||
|
||
spec = Line("z", 0, 1, 3) * ~Line("y", 0, 1, 3) * Line("x", 0, 1, 3) | ||
plot_spec(spec) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+62.6 KB
0.7.2/_downloads/090ae78c4b6455d5980148fff5aa44c2/creating-a-spec-3.hires.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+14.6 KB
0.7.2/_downloads/0b4799657e877d5b1b4cacd9b2acb170/why-squash-can-change-path-3.pdf
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions
7
0.7.2/_downloads/13b77470026a004a78b9fe0d8381851c/creating-a-spec-1.py
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
|
||
spec = Line("x", 1, 2, 5) | ||
plot_spec(spec) |
7 changes: 7 additions & 0 deletions
7
0.7.2/_downloads/140a97216923402012aba5e48fea542e/why-squash-can-change-path-4.py
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,7 @@ | ||
from scanspec.specs import Line, Squash | ||
from scanspec.plot import plot_spec | ||
|
||
spec = Line("z", 0, 1, 3) * Squash( | ||
Line("y", 0, 1, 3) * ~Line("x", 0, 1, 3), check_path_changes=False | ||
) | ||
plot_spec(spec) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13.8 KB
0.7.2/_downloads/1f2bf7a0ab5a81274b679654b2cfceaa/creating-a-spec-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+35.4 KB
0.7.2/_downloads/25365eba811f6b456fe24829840ed193/why-squash-can-change-path-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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,9 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.regions import Ellipse | ||
from scanspec.specs import Line | ||
|
||
grid = Line("y", 3, 8, 10) * ~Line("x", 1 ,8, 10) | ||
spec = grid & Ellipse("x", "y", 5, 5, 2, 3, 75) | ||
plot_spec(spec) |
Binary file added
BIN
+85.6 KB
0.7.2/_downloads/2cfa1a7efa170f3f496b6daff9bb2c49/creating-a-spec-6.hires.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+11.3 KB
0.7.2/_downloads/32c9e69b107f5cd11ed75edfef7a521c/creating-a-spec-4.pdf
Binary file not shown.
Binary file added
BIN
+12.3 KB
0.7.2/_downloads/36534493a6d19b6411e1895d931db289/creating-a-spec-1.hires.png
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
|
||
spec = Line("x", 1, 2, 5) | ||
plot_spec(spec) |
Binary file added
BIN
+37.4 KB
0.7.2/_downloads/3bd32d2e3c3a3b9ab90bef32dc7012ec/why-squash-can-change-path-2.png
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
|
||
spec = Line("y", 1, 3, 3) * ~Line("x", 3, 5, 5) | ||
plot_spec(spec) |
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Spiral | ||
|
||
spec = Spiral.spaced("x", "y", 0, 0, 10, 3) | ||
plot_spec(spec) |
Binary file added
BIN
+8.82 KB
0.7.2/_downloads/59ccb090bb2d3360ace4709fff9b5b3b/creating-a-spec-1.pdf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+11.5 KB
0.7.2/_downloads/5c0624426b92b4d678699185e497f06b/creating-a-spec-6.pdf
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.15 KB
0.7.2/_downloads/603e53497bfdb6e0d5f199b9f65883a6/creating-a-spec-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+43.6 KB
0.7.2/_downloads/65c31687b904cef516424334e81d81e7/creating-a-spec-4.hires.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+33 KB
0.7.2/_downloads/6799e6124974d7c56748316454a1d774/why-squash-can-change-path-3.png
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
|
||
spec = Line("x", 1, 3, 3).concat(Line("x", 4, 5, 5)) | ||
plot_spec(spec) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+15.5 KB
0.7.2/_downloads/6b2bfdefec22ee159c8ced5f7866a2cb/why-squash-can-change-path-4.pdf
Binary file not shown.
Binary file added
BIN
+117 KB
...wnloads/6c63be80402adee14ecfafb58cf23b0b/why-squash-can-change-path-4.hires.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+23.9 KB
0.7.2/_downloads/6d4a97d0302014228a54f3420775b31e/creating-a-spec-5.png
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Spiral | ||
|
||
spec = Spiral("x", "y", 1, 5, 10, 50, 30) | ||
plot_spec(spec) |
7 changes: 7 additions & 0 deletions
7
0.7.2/_downloads/76d94101d031d187c5c0b8699a646d02/creating-a-spec-2.py
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
|
||
spec = Line("y", 3, 4, 5).zip(Line("x", 1, 2, 5)) | ||
plot_spec(spec) |
Binary file not shown.
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line, step | ||
|
||
spec = step(Line("x", 1, 2, 3), 0.1) | ||
plot_spec(spec) |
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,9 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.regions import Circle | ||
from scanspec.specs import Line | ||
|
||
grid = Line("y", 1, 3, 10) * ~Line("x", 0, 2, 10) | ||
spec = grid & Circle("x", "y", 1, 2, 0.9) | ||
plot_spec(spec) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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.
7 changes: 7 additions & 0 deletions
7
0.7.2/_downloads/84adf8120af3f73ccaffd95e693a1656/creating-a-spec-3.py
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
|
||
spec = Line("y", 3, 4, 3) * Line("x", 1, 2, 5) | ||
plot_spec(spec) |
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line, fly | ||
|
||
spec = fly(Line("x", 1, 2, 3), 0.1) | ||
plot_spec(spec) |
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
|
||
spec = Line.bounded("x", 1, 2, 5) | ||
plot_spec(spec) |
Oops, something went wrong.
Binary file added
BIN
+11.4 KB
0.7.2/_downloads/90481c9e5c2b3588d1b16f603ccb3a86/creating-a-spec-3.pdf
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+127 KB
...wnloads/9d36571ca3788038dbc94df5de05c3b5/why-squash-can-change-path-1.hires.png
Oops, something went wrong.
Binary file not shown.
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line, Static | ||
|
||
spec = Line("y", 1, 2, 3).zip(Static.duration(0.1)) | ||
plot_spec(spec) |
Oops, something went wrong.
Binary file not shown.
7 changes: 7 additions & 0 deletions
7
0.7.2/_downloads/b3f54cd984003c3ac9f1c2960a2517f3/creating-a-spec-4.py
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
|
||
spec = Line("y", 3, 4, 3) * ~Line("x", 1, 2, 5) | ||
plot_spec(spec) |
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,9 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
from scanspec.regions import Circle | ||
|
||
cube = Line("z", 1, 3, 3) * Line("y", 1, 3, 10) * ~Line("x", 0, 2, 10) | ||
spec = cube & Circle("x", "y", 1, 2, 0.9) | ||
plot_spec(spec) |
Binary file added
BIN
+14.3 KB
0.7.2/_downloads/b8c099a01c4b47dc4d1cd8976793725f/creating-a-spec-2.png
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Binary file added
BIN
+19.3 KB
0.7.2/_downloads/bb8f2c460ed8d9d18885fd5afb672bb7/creating-a-spec-3.png
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
0.7.2/_downloads/be0266aac130d905756ec129d729f864/why-squash-can-change-path-2.py
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,7 @@ | ||
from scanspec.specs import Line, Squash | ||
from scanspec.plot import plot_spec | ||
|
||
spec = Line("z", 0, 1, 3) * Squash( | ||
~Line("y", 0, 1, 3) * Line("x", 0, 1, 3), check_path_changes=False | ||
) | ||
plot_spec(spec) |
Oops, something went wrong.
Binary file added
BIN
+123 KB
...wnloads/be854064316e2e0362d1e7cac6859d21/why-squash-can-change-path-2.hires.png
Oops, something went wrong.
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,9 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.regions import Polygon | ||
from scanspec.specs import Line | ||
|
||
grid = Line("y", 3, 8, 10) * ~Line("x", 1 ,8, 10) | ||
spec = grid & Polygon("x", "y", [1.0, 6.0, 8.0, 2.0], [4.0, 10.0, 6.0, 1.0]) | ||
plot_spec(spec) |
Binary file added
BIN
+9.69 KB
0.7.2/_downloads/c2faec58e8a7872b8c73e00e780c4f8b/creating-a-spec-2.pdf
Binary file not shown.
Oops, something went wrong.
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line, Static | ||
|
||
spec = Line("y", 1, 2, 3).zip(Static("x", 3)) | ||
plot_spec(spec) |
Binary file not shown.
8 changes: 8 additions & 0 deletions
8
0.7.2/_downloads/cf755cae62efcddb79d35f345aaba8ba/creating-a-spec-6.py
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,8 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
from scanspec.regions import Circle | ||
|
||
spec = Line("y", 3, 4, 3) * ~Line("x", 1, 2, 5) & Circle("x", "y", 1.5, 3.5, 0.6) - Circle("x", "y", 1.4, 3.5, 0.2) | ||
plot_spec(spec) |
Oops, something went wrong.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
0.7.2/_downloads/d31ee89c9fe4d6d0e70214e6a0e8a4df/creating-a-spec-5.py
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,8 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line | ||
from scanspec.regions import Circle | ||
|
||
spec = Line("y", 3, 4, 3) * ~Line("x", 1, 2, 5) & Circle("x", "y", 1.5, 3.5, 0.6) | ||
plot_spec(spec) |
Oops, something went wrong.
Binary file added
BIN
+27.6 KB
0.7.2/_downloads/d5d933689d67f07042600b892a1fa576/creating-a-spec-6.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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,7 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.specs import Line, Squash | ||
|
||
spec = Squash(Line("y", 1, 2, 3) * Line("x", 0, 1, 4)) | ||
plot_spec(spec) |
Oops, something went wrong.
Binary file added
BIN
+45.6 KB
0.7.2/_downloads/dfd125f8fe26e983a096e8d2be420600/creating-a-spec-2.hires.png
Oops, something went wrong.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
0.7.2/_downloads/e5428a1bf8c516ed6cecc74fbbe0de8f/why-squash-can-change-path-3.py
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,5 @@ | ||
from scanspec.specs import Line | ||
from scanspec.plot import plot_spec | ||
|
||
spec = Line("z", 0, 1, 3) * Line("y", 0, 1, 3) * ~Line("x", 0, 1, 3) | ||
plot_spec(spec) |
Binary file added
BIN
+38.2 KB
0.7.2/_downloads/e65a64116288e7b0b97b63ffe2ab4bbb/why-squash-can-change-path-1.png
Oops, something went wrong.
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,8 @@ | ||
# Example Spec | ||
|
||
from scanspec.plot import plot_spec | ||
from scanspec.regions import Circle | ||
from scanspec.specs import Line | ||
|
||
spec = Line("y", 1, 3, 3) * Line("x", 3, 5, 5) & Circle("x", "y", 4, 2, 1.2) | ||
plot_spec(spec) |
Binary file added
BIN
+15.7 KB
0.7.2/_downloads/e97e6c4ea088783de917c4b5859e1595/why-squash-can-change-path-1.pdf
Binary file not shown.
Oops, something went wrong.
Binary file added
BIN
+10.9 KB
0.7.2/_downloads/ec8d232d0953cdaac6529cb67293b0e8/creating-a-spec-5.pdf
Binary file not shown.
Binary file added
BIN
+16.1 KB
0.7.2/_downloads/edf4182424d7c4118287d2ea50bef6bb/why-squash-can-change-path-2.pdf
Binary file not shown.
Oops, something went wrong.
Binary file added
BIN
+74.4 KB
0.7.2/_downloads/f25ee9ccc9cf43c3c3addcdab46ff433/creating-a-spec-5.hires.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.