.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_auto_examples/containment_test/plot_sphere.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr__auto_examples_containment_test_plot_sphere.py: ================== Sphere Containment ================== .. GENERATED FROM PYTHON SOURCE LINES 6-32 .. image-sg:: /_auto_examples/containment_test/images/sphx_glr_plot_sphere_001.png :alt: plot sphere :srcset: /_auto_examples/containment_test/images/sphx_glr_plot_sphere_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none 0.0024526119232177734 s | .. code-block:: default print(__doc__) import time import numpy as np import matplotlib.pyplot as plt import pytransform3d.plot_utils as ppu from distance3d import containment_test random_state = np.random.RandomState(0) center = np.zeros(3) radius = 1.0 ax = ppu.make_3d_axis(ax_s=3) points = random_state.rand(100000, 3) points[:, 0] -= 0.5 points[:, 0] *= 2.0 points[:, 2] -= 0.5 points[:, 2] *= 2.0 start = time.time() contained = containment_test.points_in_sphere(points, center, radius) stop = time.time() print(f"{stop - start} s") ax.scatter(points[::10, 0], points[::10, 1], points[::10, 2], c=contained[::10]) ppu.plot_sphere(ax=ax, radius=radius, p=center, wireframe=True, color="r") ppu.plot_sphere(ax=ax, radius=radius, p=center, wireframe=False, alpha=0.5) plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.175 seconds) .. _sphx_glr_download__auto_examples_containment_test_plot_sphere.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_sphere.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_sphere.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_