passagemath-plot 10.6.31rc3__cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of passagemath-plot might be problematic. Click here for more details.

Files changed (82) hide show
  1. passagemath_plot-10.6.31rc3.dist-info/METADATA +172 -0
  2. passagemath_plot-10.6.31rc3.dist-info/RECORD +82 -0
  3. passagemath_plot-10.6.31rc3.dist-info/WHEEL +6 -0
  4. passagemath_plot-10.6.31rc3.dist-info/top_level.txt +2 -0
  5. passagemath_plot.libs/libgfortran-83c28eba.so.5.0.0 +0 -0
  6. passagemath_plot.libs/libgsl-cda90e79.so.28.0.0 +0 -0
  7. passagemath_plot.libs/libopenblasp-r0-6dcb67f9.3.29.so +0 -0
  8. passagemath_plot.libs/libquadmath-2284e583.so.0.0.0 +0 -0
  9. sage/all__sagemath_plot.py +15 -0
  10. sage/ext_data/threejs/animation.css +195 -0
  11. sage/ext_data/threejs/animation.html +85 -0
  12. sage/ext_data/threejs/animation.js +273 -0
  13. sage/ext_data/threejs/fat_lines.js +48 -0
  14. sage/ext_data/threejs/threejs-version.txt +1 -0
  15. sage/ext_data/threejs/threejs_template.html +597 -0
  16. sage/interfaces/all__sagemath_plot.py +1 -0
  17. sage/interfaces/gnuplot.py +196 -0
  18. sage/interfaces/jmoldata.py +208 -0
  19. sage/interfaces/povray.py +56 -0
  20. sage/plot/all.py +42 -0
  21. sage/plot/animate.py +1796 -0
  22. sage/plot/arc.py +504 -0
  23. sage/plot/arrow.py +671 -0
  24. sage/plot/bar_chart.py +205 -0
  25. sage/plot/bezier_path.py +400 -0
  26. sage/plot/circle.py +435 -0
  27. sage/plot/colors.py +1606 -0
  28. sage/plot/complex_plot.cpython-314-x86_64-linux-gnu.so +0 -0
  29. sage/plot/complex_plot.pyx +1446 -0
  30. sage/plot/contour_plot.py +1792 -0
  31. sage/plot/density_plot.py +318 -0
  32. sage/plot/disk.py +373 -0
  33. sage/plot/ellipse.py +375 -0
  34. sage/plot/graphics.py +3580 -0
  35. sage/plot/histogram.py +354 -0
  36. sage/plot/hyperbolic_arc.py +404 -0
  37. sage/plot/hyperbolic_polygon.py +416 -0
  38. sage/plot/hyperbolic_regular_polygon.py +296 -0
  39. sage/plot/line.py +626 -0
  40. sage/plot/matrix_plot.py +629 -0
  41. sage/plot/misc.py +509 -0
  42. sage/plot/multigraphics.py +1294 -0
  43. sage/plot/plot.py +4183 -0
  44. sage/plot/plot3d/all.py +23 -0
  45. sage/plot/plot3d/base.cpython-314-x86_64-linux-gnu.so +0 -0
  46. sage/plot/plot3d/base.pxd +12 -0
  47. sage/plot/plot3d/base.pyx +3378 -0
  48. sage/plot/plot3d/implicit_plot3d.py +659 -0
  49. sage/plot/plot3d/implicit_surface.cpython-314-x86_64-linux-gnu.so +0 -0
  50. sage/plot/plot3d/implicit_surface.pyx +1453 -0
  51. sage/plot/plot3d/index_face_set.cpython-314-x86_64-linux-gnu.so +0 -0
  52. sage/plot/plot3d/index_face_set.pxd +32 -0
  53. sage/plot/plot3d/index_face_set.pyx +1873 -0
  54. sage/plot/plot3d/introduction.py +131 -0
  55. sage/plot/plot3d/list_plot3d.py +649 -0
  56. sage/plot/plot3d/parametric_plot3d.py +1130 -0
  57. sage/plot/plot3d/parametric_surface.cpython-314-x86_64-linux-gnu.so +0 -0
  58. sage/plot/plot3d/parametric_surface.pxd +12 -0
  59. sage/plot/plot3d/parametric_surface.pyx +893 -0
  60. sage/plot/plot3d/platonic.py +601 -0
  61. sage/plot/plot3d/plot3d.py +1442 -0
  62. sage/plot/plot3d/plot_field3d.py +162 -0
  63. sage/plot/plot3d/point_c.pxi +148 -0
  64. sage/plot/plot3d/revolution_plot3d.py +309 -0
  65. sage/plot/plot3d/shapes.cpython-314-x86_64-linux-gnu.so +0 -0
  66. sage/plot/plot3d/shapes.pxd +22 -0
  67. sage/plot/plot3d/shapes.pyx +1382 -0
  68. sage/plot/plot3d/shapes2.py +1512 -0
  69. sage/plot/plot3d/tachyon.py +1779 -0
  70. sage/plot/plot3d/texture.py +453 -0
  71. sage/plot/plot3d/transform.cpython-314-x86_64-linux-gnu.so +0 -0
  72. sage/plot/plot3d/transform.pxd +21 -0
  73. sage/plot/plot3d/transform.pyx +268 -0
  74. sage/plot/plot3d/tri_plot.py +589 -0
  75. sage/plot/plot_field.py +362 -0
  76. sage/plot/point.py +624 -0
  77. sage/plot/polygon.py +562 -0
  78. sage/plot/primitive.py +249 -0
  79. sage/plot/scatter_plot.py +199 -0
  80. sage/plot/step.py +85 -0
  81. sage/plot/streamline_plot.py +328 -0
  82. sage/plot/text.py +432 -0
@@ -0,0 +1,172 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-plot
3
+ Version: 10.6.31rc3
4
+ Summary: passagemath: Plotting and graphics with Matplotlib, Three.JS, etc.
5
+ Author-email: The Sage Developers <sage-support@googlegroups.com>
6
+ Maintainer: Matthias Köppe, passagemath contributors
7
+ License-Expression: GPL-2.0-or-later
8
+ Project-URL: release notes, https://github.com/passagemath/passagemath/releases
9
+ Project-URL: repo (upstream), https://github.com/sagemath/sage
10
+ Project-URL: repo, https://github.com/passagemath/passagemath
11
+ Project-URL: documentation, https://passagemath.org/docs/latest
12
+ Project-URL: homepage (upstream), https://www.sagemath.org
13
+ Project-URL: discourse, https://passagemath.discourse.group
14
+ Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
15
+ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
16
+ Classifier: Development Status :: 6 - Mature
17
+ Classifier: Intended Audience :: Education
18
+ Classifier: Intended Audience :: Science/Research
19
+ Classifier: Operating System :: POSIX
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Operating System :: Microsoft :: Windows
23
+ Classifier: Programming Language :: Python :: 3 :: Only
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
30
+ Requires-Python: <3.15,>=3.10
31
+ Description-Content-Type: text/x-rst
32
+ Requires-Dist: gmpy2~=2.1.b999
33
+ Requires-Dist: cysignals<1.12.4; sys_platform == "win32"
34
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
35
+ Requires-Dist: memory_allocator
36
+ Requires-Dist: passagemath-categories==10.6.31rc3
37
+ Requires-Dist: passagemath-modules==10.6.31rc3
38
+ Requires-Dist: numpy>=1.19
39
+ Requires-Dist: numpy>=1.22.4
40
+ Requires-Dist: scipy>=1.5
41
+ Requires-Dist: pillow>=7.2.0
42
+ Requires-Dist: matplotlib>=3.5.1
43
+ Requires-Dist: jupyter-threejs-sage
44
+ Provides-Extra: test
45
+ Requires-Dist: passagemath-plot[tachyon]; extra == "test"
46
+ Requires-Dist: passagemath-repl; extra == "test"
47
+ Provides-Extra: dot2tex
48
+ Requires-Dist: dot2tex>=2.11.3; extra == "dot2tex"
49
+ Provides-Extra: jsmol
50
+ Requires-Dist: jupyter-jsmol; extra == "jsmol"
51
+ Provides-Extra: matplotlib
52
+ Provides-Extra: playwright
53
+ Requires-Dist: playwright; extra == "playwright"
54
+ Provides-Extra: tachyon
55
+ Requires-Dist: passagemath-tachyon==10.6.31rc3; extra == "tachyon"
56
+ Provides-Extra: threejs
57
+ Provides-Extra: graphs
58
+ Requires-Dist: passagemath-graphs; extra == "graphs"
59
+ Provides-Extra: polyhedra
60
+ Requires-Dist: passagemath-polyhedra; extra == "polyhedra"
61
+ Provides-Extra: symbolics
62
+ Requires-Dist: passagemath-symbolics; extra == "symbolics"
63
+
64
+ ===============================================================================================
65
+ passagemath: Plotting and graphics with Matplotlib, Three.JS, etc.
66
+ ===============================================================================================
67
+
68
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
69
+ source mathematical software in Python, released under the GNU General
70
+ Public Licence GPLv2+.
71
+
72
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
73
+ developed 2005-2025 under the motto “Creating a Viable Open Source
74
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
75
+
76
+ The passagemath fork uses the motto "Creating a Free Passage Between the
77
+ Scientific Python Ecosystem and Mathematical Software Communities."
78
+ It was created in October 2024 with the following goals:
79
+
80
+ - providing modularized installation with pip,
81
+ - establishing first-class membership in the scientific Python
82
+ ecosystem,
83
+ - giving `clear attribution of upstream
84
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
85
+ - providing independently usable Python interfaces to upstream
86
+ libraries,
87
+ - offering `platform portability and integration testing
88
+ services <https://github.com/passagemath/passagemath/issues/704>`__
89
+ to upstream projects,
90
+ - inviting collaborations with upstream projects,
91
+ - `building a professional, respectful, inclusive
92
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
93
+ - `empowering Sage users to participate in the scientific Python ecosystem
94
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
95
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
96
+ serverless deployment with Javascript,
97
+ - developing a native Windows port.
98
+
99
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
100
+ available online.
101
+
102
+ passagemath attempts to support and provides binary wheels suitable for
103
+ all major Linux distributions and recent versions of macOS.
104
+
105
+ Binary wheels for native Windows (x86_64) are are available for a subset of
106
+ the passagemath distributions. Use of the full functionality of passagemath
107
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
108
+ or virtualization.
109
+
110
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
111
+
112
+
113
+ About this pip-installable distribution package
114
+ -----------------------------------------------
115
+
116
+ This pip-installable distribution ``passagemath-plot`` is a distribution of a part of the Sage Library.
117
+
118
+ It provides the namespace packages ``sage.plot`` and ``sage.plot.plot3d``, which provide functions for plotting that are very similar to Mathematica's plotting functions. This is analogous to how matplotlib's ``pyplot`` package provides a UI on top of the core ``matplotlib`` library that is similar to matlab's plotting UI.
119
+
120
+ What is included
121
+ ----------------
122
+
123
+ * `2D Graphics <https://passagemath.org/docs/latest/html/en/reference/plotting/index.html>`_
124
+
125
+ * Backend for 2D graphics: `matplotlib <https://passagemath.org/docs/latest/html/en/reference/spkg/matplotlib.html>`_
126
+
127
+ * `3D Graphics <https://passagemath.org/docs/latest/html/en/reference/plot3d/index.html>`_
128
+
129
+ * Backend for 3D graphics: `three.js <https://passagemath.org/docs/latest/html/en/reference/spkg/threejs.html>`_
130
+
131
+ * Interfaces: `Gnuplot <https://passagemath.org/docs/latest/html/en/reference/interfaces/sage/interfaces/gnuplot.html>`_, `Jmol <https://passagemath.org/docs/latest/html/en/reference/interfaces/sage/interfaces/jmoldata.html>`_, `POV-Ray <https://passagemath.org/docs/latest/html/en/reference/interfaces/sage/interfaces/povray.html>`_, `Tachyon <https://passagemath.org/docs/latest/html/en/reference/interfaces/sage/interfaces/tachyon.html>`_
132
+
133
+ Examples
134
+ --------
135
+
136
+ ::
137
+
138
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-plot[test]" ipython
139
+
140
+ In [1]: from sage.all__sagemath_plot import *
141
+
142
+ In [2]: scatter_plot([[0,1],[2,2],[4.3,1.1]], marker='s').save('output.png')
143
+
144
+ In [3]: G = tetrahedron((0,-3.5,0), color='blue') + cube((0,-2,0), color=(.25,0,.5))
145
+
146
+ In [4]: G.show(aspect_ratio=[1,1,1])
147
+ Graphics3d Object
148
+
149
+ Available as extras, from other distributions
150
+ ---------------------------------------------
151
+
152
+ ``pip install "passagemath-plot[dot2tex]"``
153
+ Transforming Graphviz files: `dot2tex <https://pypi.org/project/dot2tex/>`_
154
+
155
+ ``pip install "passagemath-plot[graphs]"``
156
+ Graphs and networks: `sagemath-graphs <https://pypi.org/project/passagemath-graphs/>`_
157
+
158
+ ``pip install "passagemath-plot[jsmol]"``
159
+ Alternative backend for 3D graphics: `jupyter-jsmol <https://passagemath.org/docs/latest/html/en/reference/spkg/jupyter_jsmol.html>`_
160
+
161
+ ``pip install "passagemath-plot[playwright]"``
162
+ Screenshotting tool for saving 3D graphics as 2D image files: `playwright <https://pypi.org/project/playwright/>`_
163
+
164
+ ``pip install "passagemath-plot[polyhedra]"``
165
+ Polyhedra in arbitrary dimension, plotting in dimensions 2, 3, 4: `passagemath-polyhedra <https://pypi.org/project/passagemath-polyhedra/>`_
166
+
167
+ ``pip install "passagemath-plot[symbolics]"``
168
+ Defining and plotting symbolic functions and manifolds: `passagemath-symbolics <https://pypi.org/project/passagemath-symbolics/>`_
169
+
170
+ ``pip install "passagemath-plot[tachyon]"``
171
+ Ray tracing system, needed for saving 3D graphics as 2D image files:
172
+ `passagemath-tachyon <https://pypi.org/project/passagemath-tachyon/>`_
@@ -0,0 +1,82 @@
1
+ passagemath_plot.libs/libgfortran-83c28eba.so.5.0.0,sha256=oKWdrfN1viV4XXSu-wmh4LlkMyPXcpCXGKpXaE3okYs,6329289
2
+ passagemath_plot.libs/libgsl-cda90e79.so.28.0.0,sha256=KrSwXjYXJWl9ZKTAxZU2W67nd1F4tda-Zf1cS1XZSOo,3901585
3
+ passagemath_plot.libs/libopenblasp-r0-6dcb67f9.3.29.so,sha256=jSEoME9gNePt1uEof3GUGymY790Ppo0_cA3GldbfUqA,39417081
4
+ passagemath_plot.libs/libquadmath-2284e583.so.0.0.0,sha256=Vwsbw14vLhePUjOoyd3coHbstHxcZfoJ-L05UZictIE,2100929
5
+ sage/all__sagemath_plot.py,sha256=481iDn0mWXqJgA5UcrqTRUnIWQs-uTEeouT23IngI9o,409
6
+ sage/ext_data/threejs/animation.css,sha256=sTpP-9Fv_1lgOO7bFJSVkqfvMapNdLmf7wPlenYqmiQ,4821
7
+ sage/ext_data/threejs/animation.html,sha256=ZlUE4k2QY2RVevhd9EHQ9MQhze7-t0uRohAzXj3KODQ,4133
8
+ sage/ext_data/threejs/animation.js,sha256=iTlR1J1LbZkswxlZSQJjAoZlZQv-wbX2xTQH5ZcfSAM,8459
9
+ sage/ext_data/threejs/fat_lines.js,sha256=DivAjLDsx4tdffdP-CUwdJ3Q3XYK_uu251FOx_CBFV0,1392
10
+ sage/ext_data/threejs/threejs-version.txt,sha256=QQZYGMALew4BPR1isjUIAXajGIrrEj_OVfm6qSWfBD0,5
11
+ sage/ext_data/threejs/threejs_template.html,sha256=Wj2w7e801t51d0qIxCE6rz3bVBmLULArghxUhcGGTRk,22176
12
+ sage/interfaces/all__sagemath_plot.py,sha256=Uwrl0kY-cqLXifvUQOON0FefvbIEgh1phU3x5kLGHbU,43
13
+ sage/interfaces/gnuplot.py,sha256=cUS802FxNzmqzzskiMuNz_DhwT3ryXBy6biHTbjJeSo,5867
14
+ sage/interfaces/jmoldata.py,sha256=nMNHGaRtAtQNlxagVpiTCu_FGihEH1AvxPiup8gqD2c,7791
15
+ sage/interfaces/povray.py,sha256=bEFIrp7hiyD_8x769vkzJKx2zgZbhIOn2ZV1O8I3qus,1415
16
+ sage/plot/all.py,sha256=_efUOuKjGCjI1LF2dX5xhj2Taryqoro46kB54Cg_vxM,1768
17
+ sage/plot/animate.py,sha256=lTFRdsPKS6pG2SLp_6SCc-JifRNr6VU6HxbPN5rRbjI,70208
18
+ sage/plot/arc.py,sha256=fi4eUvVbAO1kAf_aRAg9mYoiGHhsTuYXdsRsdFiYt_I,15682
19
+ sage/plot/arrow.py,sha256=c1ODgg-2tr_GOy6pwNeS8Dpvo0J-CGVERG44zLxolso,25016
20
+ sage/plot/bar_chart.py,sha256=BozcZEQVjvs0BqfNDrs_Xc7xEGemsYRGaZI6UfBiPwk,6812
21
+ sage/plot/bezier_path.py,sha256=N1Tu9e-joHCEhmLT07D2N5GyHKRYkkUN2a3wyWzQsgs,15751
22
+ sage/plot/circle.py,sha256=R7ZwqU0fE0M9VE86TW1mpmfyaCFlmwQbjsEytnRL20I,14417
23
+ sage/plot/colors.py,sha256=LufwJ9xJRYLnMimSQ3BffAu0L7Ee3kzffP-qVtvgo7Y,54233
24
+ sage/plot/complex_plot.cpython-314-x86_64-linux-gnu.so,sha256=U5K_uVeWE4r-f5hXUevL_u3QeK2ReQat1WM_lXYjTOQ,1894385
25
+ sage/plot/complex_plot.pyx,sha256=57sdzqsTdo84xQuBhdGJTJINXXM0SienJALpKXvd5tQ,54490
26
+ sage/plot/contour_plot.py,sha256=0IpzApkHZz6riA8kOS0zK6Yf24jfz9X9U4tPWv3qA1o,65520
27
+ sage/plot/density_plot.py,sha256=tGDWML6aFmMKJbz170toahxr1Gvw4dwIrIDXPg1AmXw,11003
28
+ sage/plot/disk.py,sha256=mnOqcW10Yd4iQJwXHTU69f_aDizvW42REZqp_tLeenY,12507
29
+ sage/plot/ellipse.py,sha256=b9h2MWha2T8RKa38FkhjqP-GkxoUY8uLSuwB3BwDe4o,12401
30
+ sage/plot/graphics.py,sha256=WXVxjhG1iAYSUu4TAb1fz706H-8g_XPxTnGf95iAd38,144398
31
+ sage/plot/histogram.py,sha256=nQ_V3Z7mGQ3A755L4hZvWCGIwGhGZj_K_Z72EmDgC5s,15799
32
+ sage/plot/hyperbolic_arc.py,sha256=ktgr7r5V6d9vSBrfpmKej4uK5qVyIEFYcv8l-CUKGfg,13477
33
+ sage/plot/hyperbolic_polygon.py,sha256=t9HdgZI1Ya8jO7qwUSQL72cTzk9ZFfrX4nEgpFh6iD4,14474
34
+ sage/plot/hyperbolic_regular_polygon.py,sha256=HspZ_q0WLesL2CqnKqMhFFnVQmXenzYZ84zom_s0Udc,11229
35
+ sage/plot/line.py,sha256=WmM0DNOlcbliKRidzwnhyf-vvGiA2rr0cJSEC2CE6B4,22386
36
+ sage/plot/matrix_plot.py,sha256=R63yeg4udVVymMkuD9lW4jWzdJO9jRuBOA4g_T_THN0,25666
37
+ sage/plot/misc.py,sha256=QrKixyGNARPgq1AfDqbfmY8HvyQeTzq4JoTbAaZdTto,19929
38
+ sage/plot/multigraphics.py,sha256=VnLqj-NLCOlbS6i5F3xnu7i6OGpgfoh4BI1zMLb2UbE,47763
39
+ sage/plot/plot.py,sha256=MV3XPJbuRxIDa16Uogpw4Hupe7oaGW1PaO961KTsQ24,145831
40
+ sage/plot/plot_field.py,sha256=-cKwjNre6WMxOlUYHlCPHCGP2GHsXZWnHJuQTcj-BEA,13060
41
+ sage/plot/point.py,sha256=sJZbwCeNVbwOQi2_dgFG88JzYQ_j3-5guO4Wzc96x5U,19705
42
+ sage/plot/polygon.py,sha256=0kRIUVcpXHBIjIGcijrM6zfA_r-HEGEl5lR7hwfAtiw,19503
43
+ sage/plot/primitive.py,sha256=qxicBJo7hBbPtlHqzpwsiSMqRm36s6WtEBylEDYQK4o,7496
44
+ sage/plot/scatter_plot.py,sha256=UqfGuUB_ieuWEwQoyaPFIiO6WdcQXU-PaT_RSLPUxDU,7439
45
+ sage/plot/step.py,sha256=NN6U-QDJjjfh9PDpPzhBFRaEpEB4oca7OU7vF6kE0a8,2932
46
+ sage/plot/streamline_plot.py,sha256=oX6u-p4vcYYKjKxT2J8BkaNpA_tPzzk026ZBrZTzrh8,11837
47
+ sage/plot/text.py,sha256=Nq4zNk-5ym916L7MMqpQePnK37AM9qf5AqxWmP_wjao,16187
48
+ sage/plot/plot3d/all.py,sha256=VQEDOUPexAypcU38cHUmmDK9Ixrvn8ybdz3g-oTjvs8,1097
49
+ sage/plot/plot3d/base.cpython-314-x86_64-linux-gnu.so,sha256=RrywoytcYu7x8BmJT7yY5VptzeFdT6-1QTjv_zC_giQ,6407064
50
+ sage/plot/plot3d/base.pxd,sha256=gc7xaPPSKLMFCsdHV4IHZKMMtbSIImZJgcMIDq6Yb4U,311
51
+ sage/plot/plot3d/base.pyx,sha256=HQq9YtzAwXlBZJZ1CDKWbFlRps73pnmWAeEILUzrnrI,121289
52
+ sage/plot/plot3d/implicit_plot3d.py,sha256=aNvtRebOEQNvhz_SGwQWIh9DvG7vaP0e_M7aZRZi0Uk,23247
53
+ sage/plot/plot3d/implicit_surface.cpython-314-x86_64-linux-gnu.so,sha256=UoMAyixBuXxF2G1ezr6x-X0TPVJ_ZUOzB2LjrFAzskY,2389880
54
+ sage/plot/plot3d/implicit_surface.pyx,sha256=D4XtsCOS9TL9B-rf4Ym5xofM171-_gA1YVU4FgYf7Jk,63746
55
+ sage/plot/plot3d/index_face_set.cpython-314-x86_64-linux-gnu.so,sha256=6npvyJu5JfP3-nAEsSskFsFidff5v16NfEeSNHxSI88,3399296
56
+ sage/plot/plot3d/index_face_set.pxd,sha256=8gOTOz5_pF7RYyroS2a6O5lNFod2R_-t0CoVk1KWu3A,845
57
+ sage/plot/plot3d/index_face_set.pyx,sha256=rd56BUHe7UUw-EcEf66-BexLGcAOPQkfEQLDM70OLVA,68645
58
+ sage/plot/plot3d/introduction.py,sha256=FI3YFp9CW-cDmyEL7MCRr4b61b99slHyr0SXBE8QQTs,5373
59
+ sage/plot/plot3d/list_plot3d.py,sha256=LqyP0cojmZ8VUyVnphN3LuMKgzR7pQWDMYA-73Pku4A,23044
60
+ sage/plot/plot3d/parametric_plot3d.py,sha256=wsBkRi-pgg-xOlNmxyVWPshGtBHUfrO4Cq8nxwpzStg,40375
61
+ sage/plot/plot3d/parametric_surface.cpython-314-x86_64-linux-gnu.so,sha256=cnhi7bBrZFir18FgRz3EIwCmY3cK1m88iGFld3Ruq3U,1315664
62
+ sage/plot/plot3d/parametric_surface.pxd,sha256=ndxjanAYFz52ZmDgpKUU4ffmVQqr3DLQxRX_ca2KKjI,422
63
+ sage/plot/plot3d/parametric_surface.pyx,sha256=M_L8fhMGfkBrEbGK4imIfTQfkdk4JEtgpfOPHNfgK1o,32399
64
+ sage/plot/plot3d/platonic.py,sha256=4bTvD9LxE6mFVoPSpjwiIgG1IhpdzjBSxXpeFsSZOC8,17608
65
+ sage/plot/plot3d/plot3d.py,sha256=3Xn6zvYKJYrCKiy5T1Aj679ubgpniMNJB2AHx_eRQhM,51357
66
+ sage/plot/plot3d/plot_field3d.py,sha256=RD2eT_9-ztfLjQupCX0hSSvR6grvbaCSfHh2lN5HXWY,5856
67
+ sage/plot/plot3d/point_c.pxi,sha256=bQ1fylTM7_9MKxJSYBfgejYmesPtHMgwJIg63gtH-Bo,5323
68
+ sage/plot/plot3d/revolution_plot3d.py,sha256=cs46i7fuhi31Q8MJIefyFigrg8vXDfd_EYvsC5hn2sM,10999
69
+ sage/plot/plot3d/shapes.cpython-314-x86_64-linux-gnu.so,sha256=XXc9Ue9qUapsrNlbtDQt1ngwtUwVdleHvd7dsUpsEQA,2518696
70
+ sage/plot/plot3d/shapes.pxd,sha256=bLkUjOjZDOzRQ15yP5Qr79UdGvgovcPk5eKOYhekWrU,447
71
+ sage/plot/plot3d/shapes.pyx,sha256=fl8npQHv18v34UlIgd2Cfnt2m2iLIyFybmVfsct1DPA,46312
72
+ sage/plot/plot3d/shapes2.py,sha256=v_ovhC1YjaYPurYcNtJmXI3VB68dhlofKfNm7HAbbp8,52319
73
+ sage/plot/plot3d/tachyon.py,sha256=6NhDtxJLA7pKqajMPD6wiDqSDvHjzx2XQru_Sto0XDg,64121
74
+ sage/plot/plot3d/texture.py,sha256=bXemkbS5XVxS7xloD1j0VvI3lKqllF8tksUk6VW5-Z8,14305
75
+ sage/plot/plot3d/transform.cpython-314-x86_64-linux-gnu.so,sha256=myCqsJQvW49vidBf9jg6Y_ytF44bWZ5yfck_nzv4jPE,1064952
76
+ sage/plot/plot3d/transform.pxd,sha256=K2Xen9PRuXw_cUWACL1enn2rTHPJgACHMFFd2ITfr5I,549
77
+ sage/plot/plot3d/transform.pyx,sha256=KpczRrLzYDSmWbJviGrRMTkgEcWKTbHarWgchGxkfq8,10992
78
+ sage/plot/plot3d/tri_plot.py,sha256=f6hDyx1efO33WcPGVD1jGKj6PHWljUZa_ixH8U-p3xo,22144
79
+ passagemath_plot-10.6.31rc3.dist-info/METADATA,sha256=KWRXe1TMNej-65SOvUWfJog3bQLQBZNrUQD66IjRf6k,8212
80
+ passagemath_plot-10.6.31rc3.dist-info/WHEEL,sha256=DAPPhVWvGq5BGVFLgo9KvmxbaIwtYXIwSlFFt45rs78,152
81
+ passagemath_plot-10.6.31rc3.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
82
+ passagemath_plot-10.6.31rc3.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314-manylinux_2_27_x86_64
5
+ Tag: cp314-cp314-manylinux_2_28_x86_64
6
+
@@ -0,0 +1,2 @@
1
+
2
+ sage
@@ -0,0 +1,15 @@
1
+ # sage_setup: distribution = sagemath-plot
2
+ # delvewheel: patch
3
+ r"""
4
+ Top level of the distribution package sagemath-plot
5
+
6
+ This distribution makes the following feature available::
7
+
8
+ sage: from sage.features.sagemath import *
9
+ sage: sage__plot().is_present()
10
+ FeatureTestResult('sage.plot', True)
11
+ """
12
+ from .all__sagemath_modules import *
13
+
14
+ from sage.plot.all import *
15
+ from sage.plot.plot3d.all import *
@@ -0,0 +1,195 @@
1
+ /* animation.css */
2
+
3
+ #animation-ui {
4
+ position: absolute;
5
+ top: 0;
6
+ left: 0;
7
+ width: 100%;
8
+ }
9
+
10
+ #animation-ui .tick-marks {
11
+ height: 6px;
12
+ margin-bottom: 6px;
13
+ margin-left: 6px; /* Take into account the slider knob/thumb's width. */
14
+ margin-right: 5px; /* Same, but save a pixel for the last tick mark. */
15
+ background-image: repeating-linear-gradient(
16
+ to right,
17
+ darkgray 0 1px, /* Make each tick 1px wide. */
18
+ /* -1px here because of that extra pixel on the right margin */
19
+ transparent 1px calc((100% - 1px) / SAGE_FRAME_COUNT)
20
+ );
21
+ }
22
+
23
+ #animation-ui,
24
+ #animation-ui .buttons {
25
+ font-size: 0; /* hack to ignore white-space between inline-block elements */
26
+ }
27
+
28
+ #animation-ui button {
29
+ display: inline-block;
30
+ margin: 0;
31
+ padding: 2px;
32
+ width: 28px;
33
+ height: 28px;
34
+ background: none;
35
+ border: none;
36
+ border-radius: 28px;
37
+ cursor: pointer;
38
+ }
39
+ .dark-theme #animation-ui button {
40
+ padding: 1px;
41
+ border: 1px dotted black;
42
+ }
43
+
44
+ #animation-ui button:focus {
45
+ background: #b8b9ff;
46
+ outline: none;
47
+ }
48
+ .dark-theme #animation-ui button:focus {
49
+ background: none;
50
+ border-color: white;
51
+ }
52
+
53
+ /* Setting the outline to none isn't enough for Firefox. */
54
+ #animation-ui button::-moz-focus-inner {
55
+ border: none;
56
+ }
57
+
58
+ #animation-ui button:active {
59
+ background: #efefff;
60
+ }
61
+ .dark-theme #animation-ui button:active {
62
+ background: #303030;
63
+ border-style: solid;
64
+ }
65
+
66
+ #animation-ui.playing .play,
67
+ #animation-ui.paused .pause,
68
+ #animation-ui.loop .once,
69
+ #animation-ui.once .loop {
70
+ display: none;
71
+ }
72
+
73
+ /*
74
+ Slider styled using range.css tool by Daniel Stern
75
+ http://danielstern.ca/range.css/#/
76
+ Generated April 24, 2020
77
+ Customizations:
78
+ - darker focus color
79
+ - focused styling for Firefox.
80
+ */
81
+ input[type=range].slider {
82
+ -webkit-appearance: none;
83
+ width: 100%;
84
+ margin: 0px 0;
85
+ }
86
+ input[type=range].slider:focus {
87
+ outline: none;
88
+ }
89
+ input[type=range].slider::-webkit-slider-runnable-track {
90
+ width: 100%;
91
+ height: 12px;
92
+ cursor: pointer;
93
+ box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
94
+ background: #efefff;
95
+ border-radius: 6px;
96
+ border: 0px solid #000000;
97
+ }
98
+ input[type=range].slider::-webkit-slider-thumb {
99
+ box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
100
+ border: 0px solid #000000;
101
+ height: 12px;
102
+ width: 12px;
103
+ border-radius: 6px;
104
+ background: #3131ff;
105
+ cursor: pointer;
106
+ -webkit-appearance: none;
107
+ margin-top: 0px;
108
+ }
109
+ input[type=range].slider:focus::-webkit-slider-runnable-track {
110
+ background: #b8b9f6;
111
+ }
112
+ input[type=range].slider::-moz-range-track {
113
+ width: 100%;
114
+ height: 12px;
115
+ cursor: pointer;
116
+ box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
117
+ background: #efefff;
118
+ border-radius: 6px;
119
+ border: 0px solid #000000;
120
+ }
121
+ input[type=range].slider::-moz-range-thumb {
122
+ box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
123
+ border: 0px solid #000000;
124
+ height: 12px;
125
+ width: 12px;
126
+ border-radius: 6px;
127
+ background: #3131ff;
128
+ cursor: pointer;
129
+ }
130
+ input[type=range].slider:focus::-moz-range-track {
131
+ background: #b8b9f6;
132
+ }
133
+ input[type=range].slider::-moz-focus-outer {
134
+ border: none;
135
+ }
136
+ input[type=range].slider::-ms-track {
137
+ width: 100%;
138
+ height: 12px;
139
+ cursor: pointer;
140
+ background: transparent;
141
+ border-color: transparent;
142
+ color: transparent;
143
+ }
144
+ input[type=range].slider::-ms-fill-lower {
145
+ background: #efefff;
146
+ border: 0px solid #000000;
147
+ border-radius: 6px;
148
+ box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
149
+ }
150
+ input[type=range].slider::-ms-fill-upper {
151
+ background: #efefff;
152
+ border: 0px solid #000000;
153
+ border-radius: 6px;
154
+ box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
155
+ }
156
+ input[type=range].slider::-ms-thumb {
157
+ box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
158
+ border: 0px solid #000000;
159
+ width: 12px;
160
+ border-radius: 6px;
161
+ background: #3131ff;
162
+ cursor: pointer;
163
+ height: 12px;
164
+ }
165
+ input[type=range].slider:focus::-ms-fill-lower {
166
+ background: #b8b9f6;
167
+ }
168
+ input[type=range].slider:focus::-ms-fill-upper {
169
+ background: #b8b9f6;
170
+ }
171
+
172
+ .dark-theme input[type=range].slider {
173
+ background: black;
174
+ }
175
+ .dark-theme input[type=range].slider::-webkit-slider-runnable-track {
176
+ background: #303030;
177
+ }
178
+ .dark-theme input[type=range].slider:focus::-webkit-slider-thumb {
179
+ border: 1px dotted white;
180
+ }
181
+ .dark-theme input[type=range].slider::-moz-range-track {
182
+ background: #303030;
183
+ }
184
+ .dark-theme input[type=range].slider:focus::-moz-range-thumb {
185
+ border: 1px dotted white;
186
+ }
187
+ .dark-theme input[type=range].slider::-ms-fill-lower {
188
+ background: #303030;
189
+ }
190
+ .dark-theme input[type=range].slider::-ms-fill-upper {
191
+ background: #303030;
192
+ }
193
+ .dark-theme input[type=range].slider:focus::-ms-thumb {
194
+ border: 1px dotted white;
195
+ }
@@ -0,0 +1,85 @@
1
+ <!-- animation.html -->
2
+
3
+ <!--
4
+ SVG icons by Google
5
+ "Icons - Material Design"
6
+ https://material.io/resources/icons/
7
+ Retrieved April 24, 2020
8
+ Apache license version 2.0
9
+ https://www.apache.org/licenses/LICENSE-2.0.html
10
+ -->
11
+
12
+ <div id="animation-ui">
13
+
14
+ <input class="slider" type="range" min="0" max="0" value="0" step="any"/>
15
+ <div class="tick-marks"></div>
16
+
17
+ <div class="buttons">
18
+
19
+ <button class="play-pause" title="Play/pause">
20
+ <!-- play_arrow -->
21
+ <svg xmlns="http://www.w3.org/2000/svg" class="play" viewBox="0 0 24 24" fill="#3131ff"
22
+ width="24px" height="24px">
23
+ <path d="M8 5v14l11-7z"/>
24
+ <path d="M0 0h24v24H0z" fill="none"/>
25
+ </svg>
26
+ <!-- pause -->
27
+ <svg xmlns="http://www.w3.org/2000/svg" class="pause" viewBox="0 0 24 24" fill="#3131ff"
28
+ width="24px" height="24px">
29
+ <path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/>
30
+ <path d="M0 0h24v24H0z" fill="none"/>
31
+ </svg>
32
+ </button>
33
+
34
+ <button class="previous" title="Go to previous frame">
35
+ <!-- skip_previous -->
36
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#3131ff"
37
+ width="24px" height="24px">
38
+ <path d="M6 6h2v12H6zm3.5 6l8.5 6V6z"/>
39
+ <path d="M0 0h24v24H0z" fill="none"/>
40
+ </svg>
41
+ </button>
42
+ <button class="next" title="Go to next frame">
43
+ <!-- skip_next -->
44
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#3131ff"
45
+ width="24px" height="24px">
46
+ <path d="M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z"/>
47
+ <path d="M0 0h24v24H0z" fill="none"/>
48
+ </svg>
49
+ </button>
50
+
51
+ <button class="slower" title="Decrease playback speed">
52
+ <!-- switch_right -->
53
+ <svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24"
54
+ viewBox="0 0 24 24" fill="#3131ff" width="24" height="24">
55
+ <rect fill="none" width="24" height="24" transform="matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)"/>
56
+ <path d="M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z"/>
57
+ </svg>
58
+ </button>
59
+ <button class="faster" title="Increase playback speed">
60
+ <!-- switch_left -->
61
+ <svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24"
62
+ viewBox="0 0 24 24" fill="#3131ff" width="24" height="24">
63
+ <rect fill="none" height="24" width="24"/>
64
+ <path d="M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z"/>
65
+ </svg>
66
+ </button>
67
+
68
+ <button class="toggle-loop" title="Toggle looping">
69
+ <!-- sync_disabled -->
70
+ <svg xmlns="http://www.w3.org/2000/svg" class="once" viewBox="0 0 24 24" fill="#3131ff"
71
+ width="24px" height="24px">
72
+ <path d="M0 0h24v24H0zm0 0h24v24H0z" fill="none"/>
73
+ <path d="M10 6.35V4.26c-.8.21-1.55.54-2.23.96l1.46 1.46c.25-.12.5-.24.77-.33zm-7.14-.94l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.25-.77.34v2.09c.8-.21 1.55-.54 2.23-.96l2.36 2.36 1.27-1.27L4.14 4.14 2.86 5.41zM20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 1-.25 1.94-.68 2.77l1.46 1.46C19.55 15.01 20 13.56 20 12c0-2.21-.91-4.2-2.36-5.64L20 4z"/>
74
+ </svg>
75
+ <!-- sync -->
76
+ <svg xmlns="http://www.w3.org/2000/svg" class="loop" viewBox="0 0 24 24" fill="#3131ff"
77
+ width="24px" height="24px">
78
+ <path d="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"/>
79
+ <path d="M0 0h24v24H0z" fill="none"/>
80
+ </svg>
81
+ </button>
82
+
83
+ </div>
84
+
85
+ </div>