What was used to draw the rope?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
6
down vote

favorite
1












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?



enter image description here










share|improve this question





















  • 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














up vote
6
down vote

favorite
1












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?



enter image description here










share|improve this question





















  • 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












up vote
6
down vote

favorite
1









up vote
6
down vote

favorite
1






1





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?



enter image description here










share|improve this question













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?



enter image description here







tikz-pgf draw






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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
















  • 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










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


enter image description here






share|improve this answer




















    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "85"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: false,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    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






























    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


    enter image description here






    share|improve this answer
























      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


      enter image description here






      share|improve this answer






















        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


        enter image description here






        share|improve this answer












        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


        enter image description here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 23 mins ago









        marmot

        63.9k468138




        63.9k468138



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            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













































































            Comments

            Popular posts from this blog

            What does second last employer means? [closed]

            List of Gilmore Girls characters

            Confectionery