.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_auto_examples/visualizations/vis_tetrahedron_intersection.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_visualizations_vis_tetrahedron_intersection.py: ==================================== Visualize Intersection of Tetrahedra ==================================== .. GENERATED FROM PYTHON SOURCE LINES 6-48 .. code-block:: default print(__doc__) import numpy as np import pytransform3d.visualizer as pv from distance3d import hydroelastic_contact, visualization sphere1 = hydroelastic_contact.RigidBody.make_sphere(np.array([0.1, 0.2, 0.1]), 1.0, order=2) sphere1.express_in(np.eye(4)) sphere2 = hydroelastic_contact.RigidBody.make_sphere(np.array([0.05, 0.15, 1.6]), 1.0, order=2) sphere2.express_in(np.eye(4)) tetrahedron1 = sphere1.tetrahedra_points[257] tetrahedron2 = sphere2.tetrahedra_points[310] epsilon1 = np.array([0.0, 0.0, 0.0, 1.0]) epsilon2 = np.array([0.0, 0.0, 0.0, 1.0]) X1 = hydroelastic_contact.barycentric_transforms(tetrahedron1[np.newaxis])[0] X2 = hydroelastic_contact.barycentric_transforms(tetrahedron2[np.newaxis])[0] intersection, contact = hydroelastic_contact.intersect_tetrahedron_pair( tetrahedron1, epsilon1, X1, tetrahedron2, epsilon2, X2) assert intersection contact_plane_hnf, contact_polygon = contact intersection_com, force_vector, _, _ = hydroelastic_contact.compute_contact_force( tetrahedron1, epsilon1, contact_plane_hnf, contact_polygon) fig = pv.figure() fig.scatter(tetrahedron1, s=0.01, c=(1, 0, 0)) fig.scatter(tetrahedron2, s=0.01, c=(0, 0, 1)) fig.plot_transform(np.eye(4), s=0.05) fig.plot_plane(normal=contact_plane_hnf[:3], d=contact_plane_hnf[3]) fig.scatter(contact_polygon, s=0.03, c=(1, 0, 1)) fig.plot_vector(intersection_com, 100.0 * force_vector, c=(1, 0, 0)) visualization.Tetrahedron(tetrahedron1).add_artist(fig) visualization.Tetrahedron(tetrahedron2).add_artist(fig) fig.view_init() if "__file__" in globals(): fig.show() else: fig.save_image("__open3d_rendered_image.jpg") .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.000 seconds) .. _sphx_glr_download__auto_examples_visualizations_vis_tetrahedron_intersection.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: vis_tetrahedron_intersection.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: vis_tetrahedron_intersection.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_