Note
Go to the end to download the full example code
Visualize Transformed Cylinders#
Plots transformed cylinders.
import numpy as np
from pytransform3d.transformations import transform_from
from pytransform3d.rotations import random_axis_angle, matrix_from_axis_angle
import pytransform3d.visualizer as pv
fig = pv.figure()
rng = np.random.default_rng(42)
A2B = transform_from(
R=matrix_from_axis_angle(random_axis_angle(rng)),
p=rng.standard_normal(size=3))
fig.plot_cylinder(length=1.0, radius=0.3)
fig.plot_transform(A2B=np.eye(4))
fig.plot_cylinder(length=1.0, radius=0.3, A2B=A2B)
fig.plot_transform(A2B=A2B)
fig.view_init()
fig.set_zoom(2)
if "__file__" in globals():
fig.show()
else:
fig.save_image("__open3d_rendered_image.jpg")
Total running time of the script: (0 minutes 0.183 seconds)