Custom shape shows unwanted extra line












3















documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) -- (-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}


This is supposed to be a closed custom shape WITHOUT the straight line!



enter image description here



How can I get rid of this unwanted line?



Putting '-- cycle' at the end makes no difference.










share|improve this question




















  • 1





    You have an extra -- (-4.261,2.617) which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc: draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.

    – Phelype Oleinik
    4 hours ago











  • @PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.

    – marmot
    3 hours ago
















3















documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) -- (-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}


This is supposed to be a closed custom shape WITHOUT the straight line!



enter image description here



How can I get rid of this unwanted line?



Putting '-- cycle' at the end makes no difference.










share|improve this question




















  • 1





    You have an extra -- (-4.261,2.617) which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc: draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.

    – Phelype Oleinik
    4 hours ago











  • @PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.

    – marmot
    3 hours ago














3












3








3


1






documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) -- (-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}


This is supposed to be a closed custom shape WITHOUT the straight line!



enter image description here



How can I get rid of this unwanted line?



Putting '-- cycle' at the end makes no difference.










share|improve this question
















documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) -- (-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}


This is supposed to be a closed custom shape WITHOUT the straight line!



enter image description here



How can I get rid of this unwanted line?



Putting '-- cycle' at the end makes no difference.







tikz-pgf shapes






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 4 hours ago







Petoetje59

















asked 4 hours ago









Petoetje59Petoetje59

4021615




4021615








  • 1





    You have an extra -- (-4.261,2.617) which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc: draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.

    – Phelype Oleinik
    4 hours ago











  • @PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.

    – marmot
    3 hours ago














  • 1





    You have an extra -- (-4.261,2.617) which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc: draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.

    – Phelype Oleinik
    4 hours ago











  • @PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.

    – marmot
    3 hours ago








1




1





You have an extra -- (-4.261,2.617) which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc: draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.

– Phelype Oleinik
4 hours ago





You have an extra -- (-4.261,2.617) which draws a straight line to the start point of the path. Remove that and swap the start and end angles of the arc: draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118) arc (321.42:148.44:5);.

– Phelype Oleinik
4 hours ago













@PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.

– marmot
3 hours ago





@PhelypeOleinik Yes, that's the probably best solution here. You should write an answer.

– marmot
3 hours ago










2 Answers
2






active

oldest

votes


















2














I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.



In fact, I like Phelype's proposal better than "just removing the line". Here is why:



documentclass{article}
usepackage{tikz}
begin{document}
Reversing the arc:
begin{tikzpicture}
draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
arc (321.42:148.44:5);
end{tikzpicture}

Just removing the line:
begin{tikzpicture}
draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}


enter image description here



The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.






share|improve this answer


























  • Simple but effective! Thanks.

    – Petoetje59
    2 hours ago





















4














just remove -- from the path



documentclass{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}
draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
(-4.261,2.617) arc (148.44:321.42:5);
end{tikzpicture}
end{document}


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',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    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%2f476653%2fcustom-shape-shows-unwanted-extra-line%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.



    In fact, I like Phelype's proposal better than "just removing the line". Here is why:



    documentclass{article}
    usepackage{tikz}
    begin{document}
    Reversing the arc:
    begin{tikzpicture}
    draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
    arc (321.42:148.44:5);
    end{tikzpicture}

    Just removing the line:
    begin{tikzpicture}
    draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
    (-4.261,2.617) arc (148.44:321.42:5);
    end{tikzpicture}
    end{document}


    enter image description here



    The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.






    share|improve this answer


























    • Simple but effective! Thanks.

      – Petoetje59
      2 hours ago


















    2














    I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.



    In fact, I like Phelype's proposal better than "just removing the line". Here is why:



    documentclass{article}
    usepackage{tikz}
    begin{document}
    Reversing the arc:
    begin{tikzpicture}
    draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
    arc (321.42:148.44:5);
    end{tikzpicture}

    Just removing the line:
    begin{tikzpicture}
    draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
    (-4.261,2.617) arc (148.44:321.42:5);
    end{tikzpicture}
    end{document}


    enter image description here



    The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.






    share|improve this answer


























    • Simple but effective! Thanks.

      – Petoetje59
      2 hours ago
















    2












    2








    2







    I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.



    In fact, I like Phelype's proposal better than "just removing the line". Here is why:



    documentclass{article}
    usepackage{tikz}
    begin{document}
    Reversing the arc:
    begin{tikzpicture}
    draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
    arc (321.42:148.44:5);
    end{tikzpicture}

    Just removing the line:
    begin{tikzpicture}
    draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
    (-4.261,2.617) arc (148.44:321.42:5);
    end{tikzpicture}
    end{document}


    enter image description here



    The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.






    share|improve this answer















    I saw Phelype's comment and deleted the post. Now I am undeleting it per request. But I will be happy to delete it again. In any case, full credits go to Phelype Oleinik, who was the first to propose a solution.



    In fact, I like Phelype's proposal better than "just removing the line". Here is why:



    documentclass{article}
    usepackage{tikz}
    begin{document}
    Reversing the arc:
    begin{tikzpicture}
    draw[fill=blue] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
    arc (321.42:148.44:5);
    end{tikzpicture}

    Just removing the line:
    begin{tikzpicture}
    draw[fill=red] (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
    (-4.261,2.617) arc (148.44:321.42:5);
    end{tikzpicture}
    end{document}


    enter image description here



    The blue corresponds to what I would suggest, namely reversing the arc, and the red one "removing the line", which works at the level of the contour but does not yield a continuous path.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 3 hours ago

























    answered 3 hours ago









    marmotmarmot

    103k4123234




    103k4123234













    • Simple but effective! Thanks.

      – Petoetje59
      2 hours ago





















    • Simple but effective! Thanks.

      – Petoetje59
      2 hours ago



















    Simple but effective! Thanks.

    – Petoetje59
    2 hours ago







    Simple but effective! Thanks.

    – Petoetje59
    2 hours ago













    4














    just remove -- from the path



    documentclass{article}
    usepackage{tikz}
    begin{document}
    begin{tikzpicture}
    draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
    (-4.261,2.617) arc (148.44:321.42:5);
    end{tikzpicture}
    end{document}


    enter image description here






    share|improve this answer




























      4














      just remove -- from the path



      documentclass{article}
      usepackage{tikz}
      begin{document}
      begin{tikzpicture}
      draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
      (-4.261,2.617) arc (148.44:321.42:5);
      end{tikzpicture}
      end{document}


      enter image description here






      share|improve this answer


























        4












        4








        4







        just remove -- from the path



        documentclass{article}
        usepackage{tikz}
        begin{document}
        begin{tikzpicture}
        draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
        (-4.261,2.617) arc (148.44:321.42:5);
        end{tikzpicture}
        end{document}


        enter image description here






        share|improve this answer













        just remove -- from the path



        documentclass{article}
        usepackage{tikz}
        begin{document}
        begin{tikzpicture}
        draw (-4.261,2.617)..controls (2.5,1.5) and (-4.5,-3)..(3.908,-3.118)
        (-4.261,2.617) arc (148.44:321.42:5);
        end{tikzpicture}
        end{document}


        enter image description here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 4 hours ago









        Hafid BoukhouldaHafid Boukhoulda

        4,0971624




        4,0971624






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f476653%2fcustom-shape-shows-unwanted-extra-line%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How to label and detect the document text images

            Vallis Paradisi

            Tabula Rosettana