What was used to draw the rope?
Clash Royale CLAN TAG#URR8PPP
up vote
6
down vote
favorite
I came across the following to draw a rope connecting two points. Is this a custom-made object, or is this something that came from a package?
If it is custom-made, what is the best way of constructing something like this without the code being overly convoluted?
tikz-pgf draw
add a comment |Â
up vote
6
down vote
favorite
I came across the following to draw a rope connecting two points. Is this a custom-made object, or is this something that came from a package?
If it is custom-made, what is the best way of constructing something like this without the code being overly convoluted?
tikz-pgf draw
What makes you think that this was drawn with TikZ?
– Henri Menke
23 mins ago
Questions asking us to recommend or find a package, font, tool, book or other off-site resource are off-topic as they usually do not revolve around an abstract issue. Instead, describe the problem and what has been done so far to solve it or, if applicable, ask on Software Recommendations SX.
– Henri Menke
23 mins ago
add a comment |Â
up vote
6
down vote
favorite
up vote
6
down vote
favorite
I came across the following to draw a rope connecting two points. Is this a custom-made object, or is this something that came from a package?
If it is custom-made, what is the best way of constructing something like this without the code being overly convoluted?
tikz-pgf draw
I came across the following to draw a rope connecting two points. Is this a custom-made object, or is this something that came from a package?
If it is custom-made, what is the best way of constructing something like this without the code being overly convoluted?
tikz-pgf draw
tikz-pgf draw
asked 2 hours ago
Trogdor
27515
27515
What makes you think that this was drawn with TikZ?
– Henri Menke
23 mins ago
Questions asking us to recommend or find a package, font, tool, book or other off-site resource are off-topic as they usually do not revolve around an abstract issue. Instead, describe the problem and what has been done so far to solve it or, if applicable, ask on Software Recommendations SX.
– Henri Menke
23 mins ago
add a comment |Â
What makes you think that this was drawn with TikZ?
– Henri Menke
23 mins ago
Questions asking us to recommend or find a package, font, tool, book or other off-site resource are off-topic as they usually do not revolve around an abstract issue. Instead, describe the problem and what has been done so far to solve it or, if applicable, ask on Software Recommendations SX.
– Henri Menke
23 mins ago
What makes you think that this was drawn with TikZ?
– Henri Menke
23 mins ago
What makes you think that this was drawn with TikZ?
– Henri Menke
23 mins ago
Questions asking us to recommend or find a package, font, tool, book or other off-site resource are off-topic as they usually do not revolve around an abstract issue. Instead, describe the problem and what has been done so far to solve it or, if applicable, ask on Software Recommendations SX.
– Henri Menke
23 mins ago
Questions asking us to recommend or find a package, font, tool, book or other off-site resource are off-topic as they usually do not revolve around an abstract issue. Instead, describe the problem and what has been done so far to solve it or, if applicable, ask on Software Recommendations SX.
– Henri Menke
23 mins ago
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
6
down vote
It is not too difficult to draw something along these lines.
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.markings
begindocument
begintikzpicture
draw[decorate,decoration=markings,
mark=between positions 2mm and pgfdecoratedpathlength-2mm step 2mm
with
draw[ultra thick,gray]
(-3.5mm,-1.25mm) to[out=0,in=160] (-2mm,-1.25mm) to[out=-20,in=160]
(2mm,1.25mm) to[out=-20,in=180] (3.5mm,1.25mm);
]
(0,0) -- (4,-4);
fill (0,0) circle (3mm);
endtikzpicture
enddocument
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
It is not too difficult to draw something along these lines.
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.markings
begindocument
begintikzpicture
draw[decorate,decoration=markings,
mark=between positions 2mm and pgfdecoratedpathlength-2mm step 2mm
with
draw[ultra thick,gray]
(-3.5mm,-1.25mm) to[out=0,in=160] (-2mm,-1.25mm) to[out=-20,in=160]
(2mm,1.25mm) to[out=-20,in=180] (3.5mm,1.25mm);
]
(0,0) -- (4,-4);
fill (0,0) circle (3mm);
endtikzpicture
enddocument
add a comment |Â
up vote
6
down vote
It is not too difficult to draw something along these lines.
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.markings
begindocument
begintikzpicture
draw[decorate,decoration=markings,
mark=between positions 2mm and pgfdecoratedpathlength-2mm step 2mm
with
draw[ultra thick,gray]
(-3.5mm,-1.25mm) to[out=0,in=160] (-2mm,-1.25mm) to[out=-20,in=160]
(2mm,1.25mm) to[out=-20,in=180] (3.5mm,1.25mm);
]
(0,0) -- (4,-4);
fill (0,0) circle (3mm);
endtikzpicture
enddocument
add a comment |Â
up vote
6
down vote
up vote
6
down vote
It is not too difficult to draw something along these lines.
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.markings
begindocument
begintikzpicture
draw[decorate,decoration=markings,
mark=between positions 2mm and pgfdecoratedpathlength-2mm step 2mm
with
draw[ultra thick,gray]
(-3.5mm,-1.25mm) to[out=0,in=160] (-2mm,-1.25mm) to[out=-20,in=160]
(2mm,1.25mm) to[out=-20,in=180] (3.5mm,1.25mm);
]
(0,0) -- (4,-4);
fill (0,0) circle (3mm);
endtikzpicture
enddocument
It is not too difficult to draw something along these lines.
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.markings
begindocument
begintikzpicture
draw[decorate,decoration=markings,
mark=between positions 2mm and pgfdecoratedpathlength-2mm step 2mm
with
draw[ultra thick,gray]
(-3.5mm,-1.25mm) to[out=0,in=160] (-2mm,-1.25mm) to[out=-20,in=160]
(2mm,1.25mm) to[out=-20,in=180] (3.5mm,1.25mm);
]
(0,0) -- (4,-4);
fill (0,0) circle (3mm);
endtikzpicture
enddocument
answered 23 mins ago


marmot
63.9k468138
63.9k468138
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f454478%2fwhat-was-used-to-draw-the-rope%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
What makes you think that this was drawn with TikZ?
– Henri Menke
23 mins ago
Questions asking us to recommend or find a package, font, tool, book or other off-site resource are off-topic as they usually do not revolve around an abstract issue. Instead, describe the problem and what has been done so far to solve it or, if applicable, ask on Software Recommendations SX.
– Henri Menke
23 mins ago