.. _sphx_glr_gallery_some_plot.py: Some gallery plot ----------------- This is a sample gallery plot. .. image:: /gallery/images/sphx_glr_some_plot_001.png :align: center .. rst-class:: sphx-glr-script-out Out:: 10 | .. code-block:: python import matplotlib.pyplot as plt import numpy as np from geometric import Sphere sphere = Sphere(center=[1, 2, 3], radius=10, density=10) print(sphere.density) x = np.linspace(0, 100, 100) y = np.sin(x) + 10 plt.figure() plt.plot(x, y) plt.tight_layout() plt.show() **Total running time of the script:** ( 0 minutes 0.214 seconds) .. container:: sphx-glr-footer .. container:: sphx-glr-download :download:`Download Python source code: some_plot.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: some_plot.ipynb ` .. rst-class:: sphx-glr-signature `Generated by Sphinx-Gallery `_