mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
* kill unwrapped_remote (#1490) * kill unwrapped_remote * linting * don't use callKwargs for python plugins * fix tests and improve types * Bringing PyScript.next PoC to the main project * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: Madhur Tandon <20173739+madhur-tandon@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
52 lines
1.2 KiB
Python
52 lines
1.2 KiB
Python
import js
|
|
import matplotlib
|
|
|
|
try:
|
|
js.document
|
|
except AttributeError:
|
|
matplotlib.use("agg")
|
|
|
|
import base64
|
|
import io
|
|
|
|
import matplotlib.pyplot as plt
|
|
import matplotlib.tri as tri
|
|
import numpy as np
|
|
|
|
# First create the x and y coordinates of the points.
|
|
n_angles = 36
|
|
n_radii = 8
|
|
min_radius = 0.25
|
|
radii = np.linspace(min_radius, 0.95, n_radii)
|
|
|
|
angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)
|
|
angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)
|
|
angles[:, 1::2] += np.pi / n_angles
|
|
|
|
x = (radii * np.cos(angles)).flatten()
|
|
y = (radii * np.sin(angles)).flatten()
|
|
z = (np.cos(radii) * np.cos(3 * angles)).flatten()
|
|
|
|
# Create the Triangulation; no triangles so Delaunay triangulation created.
|
|
triang = tri.Triangulation(x, y)
|
|
|
|
# Mask off unwanted triangles.
|
|
triang.set_mask(
|
|
np.hypot(x[triang.triangles].mean(axis=1), y[triang.triangles].mean(axis=1))
|
|
< min_radius
|
|
)
|
|
|
|
fig1, ax1 = plt.subplots()
|
|
ax1.set_aspect("equal")
|
|
tpc = ax1.tripcolor(triang, z, shading="flat")
|
|
fig1.colorbar(tpc)
|
|
ax1.set_title("tripcolor of Delaunay triangulation, flat shading")
|
|
|
|
buf = io.BytesIO()
|
|
plt.savefig(buf, format="png")
|
|
buf.seek(0)
|
|
|
|
js.xworker.postMessage(
|
|
"data:image/png;base64," + base64.b64encode(buf.read()).decode("UTF-8")
|
|
)
|