Skip to content

Commit 3d7d3ff

Browse files
authored
Merge pull request #126 from QuLogic/transparent-seed
Add a randomness seed to transparency script
2 parents 1affc9e + 4b6dbae commit 3d7d3ff

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/tip-transparency.py

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
import matplotlib.pyplot as plt
88
mpl.rc('axes', linewidth=1.5)
99

10+
np.random.seed(123)
11+
1012
fig = plt.figure(figsize=(2, 2), dpi=100)
1113
margin = 0.01
1214
ax = fig.add_axes([margin, margin, 1-2*margin, 1-2*margin])

0 commit comments

Comments
 (0)