Custom shape shows unwanted extra line
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!
How can I get rid of this unwanted line?
Putting '-- cycle
' at the end makes no difference.
tikz-pgf shapes
add a comment |
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!
How can I get rid of this unwanted line?
Putting '-- cycle
' at the end makes no difference.
tikz-pgf shapes
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
add a comment |
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!
How can I get rid of this unwanted line?
Putting '-- cycle
' at the end makes no difference.
tikz-pgf shapes
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!
How can I get rid of this unwanted line?
Putting '-- cycle
' at the end makes no difference.
tikz-pgf shapes
tikz-pgf shapes
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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}
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.
Simple but effective! Thanks.
– Petoetje59
2 hours ago
add a comment |
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}
add a comment |
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
});
}
});
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
Required, but never shown
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
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}
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.
Simple but effective! Thanks.
– Petoetje59
2 hours ago
add a comment |
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}
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.
Simple but effective! Thanks.
– Petoetje59
2 hours ago
add a comment |
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}
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.
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}
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.
edited 3 hours ago
answered 3 hours ago
marmotmarmot
103k4123234
103k4123234
Simple but effective! Thanks.
– Petoetje59
2 hours ago
add a comment |
Simple but effective! Thanks.
– Petoetje59
2 hours ago
Simple but effective! Thanks.
– Petoetje59
2 hours ago
Simple but effective! Thanks.
– Petoetje59
2 hours ago
add a comment |
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}
add a comment |
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}
add a comment |
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}
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}
answered 4 hours ago
Hafid BoukhouldaHafid Boukhoulda
4,0971624
4,0971624
add a comment |
add a comment |
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.
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
Required, but never shown
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
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
Required, but never shown
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
Required, but never shown
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
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
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