Tikz: Copy segment length
Is all copper pipe pretty much the same?
My story is written in English, but is set in my home country. What language should I use for the dialogue?
Ban on all campaign finance?
If the Captain's screens are out, does he switch seats with the co-pilot?
Life insurance that covers only simultaneous/dual deaths
What has been your most complicated TikZ drawing?
Single word request: Harming the benefactor
Provisioning profile doesn't include the application-identifier and keychain-access-groups entitlements
Why would a jet engine that runs at temps excess of 2000°C burn when it crashes?
Is it illegal in Germany to take sick leave if you caused your own illness with food?
Best approach to update all entries in a list that is paginated?
Running a subshell from the middle of the current command
Good allowance savings plan?
What is the difference between "shut" and "close"?
It's a yearly task, alright
The meaning of the "at the of"
Co-worker team leader wants to inject the crap software product of his friends into our development. What should I say to our common boss?
Is it true that real estate prices mainly go up?
Is having access to past exams cheating and, if yes, could it be proven just by a good grade?
Potentiometer like component
How does Dispel Magic work against Stoneskin?
What is the likely impact on flights of grounding an entire aircraft series?
How could a female member of a species produce eggs unto death?
The three point beverage
Tikz: Copy segment length
Is it possible to have a macro which uses the length between to points to calculate another calculate, as in the following example:
documentclass[tikz,border=10pt]{standalone}
usepackage{tikz}
usetikzlibrary{calculations}
begin{document}
begin{tikzpicture}
coordinate (A) at (0,0);
coordinate (B) at (2,5);
coordinate (C) at (7,0);
% Is this possible?
% From point C to the direction of point A with the length of
% from point A to point B
% coordinate (D) at ($(C)!(A)!(A)-(B)$);
% or
% From point C to the direction of 60 degrees with the length of
% from point A to point B
% coordinate (D) at ($(C)!(60)!(A)-(B)$);
draw (A)--(B)--(C)--cycle;
end{tikzpicture}
end{document}
tikz-pgf
New contributor
add a comment |
Is it possible to have a macro which uses the length between to points to calculate another calculate, as in the following example:
documentclass[tikz,border=10pt]{standalone}
usepackage{tikz}
usetikzlibrary{calculations}
begin{document}
begin{tikzpicture}
coordinate (A) at (0,0);
coordinate (B) at (2,5);
coordinate (C) at (7,0);
% Is this possible?
% From point C to the direction of point A with the length of
% from point A to point B
% coordinate (D) at ($(C)!(A)!(A)-(B)$);
% or
% From point C to the direction of 60 degrees with the length of
% from point A to point B
% coordinate (D) at ($(C)!(60)!(A)-(B)$);
draw (A)--(B)--(C)--cycle;
end{tikzpicture}
end{document}
tikz-pgf
New contributor
add a comment |
Is it possible to have a macro which uses the length between to points to calculate another calculate, as in the following example:
documentclass[tikz,border=10pt]{standalone}
usepackage{tikz}
usetikzlibrary{calculations}
begin{document}
begin{tikzpicture}
coordinate (A) at (0,0);
coordinate (B) at (2,5);
coordinate (C) at (7,0);
% Is this possible?
% From point C to the direction of point A with the length of
% from point A to point B
% coordinate (D) at ($(C)!(A)!(A)-(B)$);
% or
% From point C to the direction of 60 degrees with the length of
% from point A to point B
% coordinate (D) at ($(C)!(60)!(A)-(B)$);
draw (A)--(B)--(C)--cycle;
end{tikzpicture}
end{document}
tikz-pgf
New contributor
Is it possible to have a macro which uses the length between to points to calculate another calculate, as in the following example:
documentclass[tikz,border=10pt]{standalone}
usepackage{tikz}
usetikzlibrary{calculations}
begin{document}
begin{tikzpicture}
coordinate (A) at (0,0);
coordinate (B) at (2,5);
coordinate (C) at (7,0);
% Is this possible?
% From point C to the direction of point A with the length of
% from point A to point B
% coordinate (D) at ($(C)!(A)!(A)-(B)$);
% or
% From point C to the direction of 60 degrees with the length of
% from point A to point B
% coordinate (D) at ($(C)!(60)!(A)-(B)$);
draw (A)--(B)--(C)--cycle;
end{tikzpicture}
end{document}
tikz-pgf
tikz-pgf
New contributor
New contributor
New contributor
asked 45 secs ago
DorukDoruk
1
1
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
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
});
}
});
Doruk is a new contributor. Be nice, and check out our Code of Conduct.
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%2f479413%2ftikz-copy-segment-length%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Doruk is a new contributor. Be nice, and check out our Code of Conduct.
Doruk is a new contributor. Be nice, and check out our Code of Conduct.
Doruk is a new contributor. Be nice, and check out our Code of Conduct.
Doruk is a new contributor. Be nice, and check out our Code of Conduct.
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%2f479413%2ftikz-copy-segment-length%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