Draw line through dots #1800
Answered
by
kilacoda-old
erwindenboer
asked this question in
General
-
Hello, For differentiation, I want to draw a line which goes through two dots. For now, I can draw a line which ends at two dots. Is there something possible which does this? |
Beta Was this translation helpful? Give feedback.
Answered by
kilacoda-old
Jul 15, 2021
Replies: 1 comment 10 replies
-
You could try to do what you're doing and add multiples of Line(start=p1 +LEFT, end=p2+RIGHT) EDIT: See last few replies to this thread for the real solution. |
Beta Was this translation helpful? Give feedback.
10 replies
Answer selected by
erwindenboer
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could try to do what you're doing and add multiples of
LEFT
andRIGHT
to each endpoint of the line:EDIT: See last few replies to this thread for the real solution.