-
Hi Marco!! Cheers |
Beta Was this translation helpful? Give feedback.
Answered by
marcomusy
Sep 14, 2022
Replies: 1 comment 1 reply
-
Hi, the dotted feature is less than perfect... You may explore one of these options: from vedo import *
pts = [[1, 0, 0], [5, 2, 0], [3, 3, 1]]
ln = Line(pts, c='r', lw=5).pattern('- -', repeats=10)
ln.show(axes=1).close()
ln = DashedLine(pts, c='r', lw=4)
ln.show(axes=1).close()
ln = Line([5, 2, 0], [3, 3, 1], res=50).ps(5).c('r').lighting("off")
ln.show(axes=1).close() |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jkissi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, the dotted feature is less than perfect... You may explore one of these options: