Create a cylinder collision geometry. The cylinder has a length of 3 meters and a radius of 1 meter.
cyl = collisionCylinder(1,3);
Show the cylinder.
show(cyl)
Show the cylinder in a new figure, and return the patch object that represents the cylinder. Change the cylinder color to cyan by changing the RGB value of the FaceColor field in the patch object. Hide the edges by setting EdgeColor to 'none'.