Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
mpl_toolkits /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
baseline_images
[ DIR ]
drwxr-xr-x
__init__.py
381
B
-rw-r--r--
conftest.py
213
B
-rw-r--r--
test_axes_grid.py
1.6
KB
-rw-r--r--
test_axes_grid1.py
14.68
KB
-rw-r--r--
test_axisartist_angle_helper.p...
5.57
KB
-rw-r--r--
test_axisartist_axis_artist.py
2.83
KB
-rw-r--r--
test_axisartist_axislines.py
2.21
KB
-rw-r--r--
test_axisartist_clip_path.py
1.03
KB
-rw-r--r--
test_axisartist_floating_axes....
4.07
KB
-rw-r--r--
test_axisartist_grid_finder.py
325
B
-rw-r--r--
test_axisartist_grid_helper_cu...
7.31
KB
-rw-r--r--
test_mplot3d.py
25.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_axisartist_clip_path.py
import numpy as np import matplotlib.pyplot as plt from matplotlib.testing.decorators import image_comparison from matplotlib.transforms import Bbox from mpl_toolkits.axisartist.clip_path import clip_line_to_rect @image_comparison(baseline_images=['clip_path'], extensions=['png'], style='default') def test_clip_path(): x = np.array([-3, -2, -1, 0., 1, 2, 3, 2, 1, 0, -1, -2, -3, 5]) y = np.arange(len(x)) fig, ax = plt.subplots() ax.plot(x, y, lw=1) bbox = Bbox.from_extents(-2, 3, 2, 12.5) rect = plt.Rectangle(bbox.p0, bbox.width, bbox.height, facecolor='none', edgecolor='k', ls='--') ax.add_patch(rect) clipped_lines, ticks = clip_line_to_rect(x, y, bbox) for lx, ly in clipped_lines: ax.plot(lx, ly, lw=1, color='C1') for px, py in zip(lx, ly): assert bbox.contains(px, py) ccc = iter(['C3o', 'C2x', 'C3o', 'C2x']) for ttt in ticks: cc = next(ccc) for (xx, yy), aa in ttt: ax.plot([xx], [yy], cc)
Close