Tikz: Copy segment lengthTikz: draw a vector pointing from one point to anotherangled lines of unkown length...
The three point beverage
Does splitting a potentially monolithic application into several smaller ones help prevent bugs?
Should we release the security issues we found in our product as CVE or we can just update those on weekly release notes?
Time dilation for a moving electronic clock
What to do when during a meeting client people start to fight (even physically) with each others?
What Happens when Passenger Refuses to Fly Boeing 737 Max?
Why do Australian milk farmers need to protest supermarkets' milk price?
Does anyone draw a parallel between Haman selling himself to Mordechai and Esav selling the birthright to Yaakov?
Rejected in 4th interview round citing insufficient years of experience
What is the blue range indicating on this manifold pressure gauge?
The meaning of the "at the of"
Touchscreen-controlled dentist office snowman collector game
What exactly is the purpose of connection links straped between the rocket and the launch pad
What has been your most complicated TikZ drawing?
Do Bugbears' arms literally get longer when it's their turn?
Is King K. Rool's down throw to up-special a true combo?
Word for a person who has no opinion about whether god exists
Should QA ask requirements to developers?
"However" used in a conditional clause?
Running a subshell from the middle of the current command
What is the likely impact on flights of grounding an entire aircraft series?
validation vs test vs training accuracy, which one to compare for claiming overfit?
Why would a jet engine that runs at temps excess of 2000°C burn when it crashes?
Do I need to leave some extra space available on the disk which my database log files reside, for log backup operations to successfully occur?
Tikz: Copy segment length
Tikz: draw a vector pointing from one point to anotherangled lines of unkown length in TikZtikz sloped linesNumerical conditional within tikz keys?Why do I get an extra white page before my TikZ picture?figure 2 for Crossed Ladders ProblemDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHow to draw a square and its diagonals with arrows?Compound Pathway Problem with holes
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 10 mins ago
DorukDoruk
61
61
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