Hello everyone.
Is there an efficient way to define a cilindrical sensor?
Thanks in advance!
Lucas.
Hello everyone.
Is there an efficient way to define a cilindrical sensor?
Thanks in advance!
Lucas.
Hi Lucas,
You could use something like makeArc
in 2D, and then extend it into 3D using repmat
. For example:
cyl = repmat(makeArc([32, 32], [16, 16], 20, 27, [16, 32]), [1, 1, 32]);
voxelPlot(cyl);
Brad
You must log in to post.