Intersection of a sphere and a plane knowing equationsHow can I draw this cylinder with 3D?Rotate a node but...
Translation of Scottish 16th century church stained glass
How should I respond when I lied about my education and the company finds out through background check?
Bob has never been a M before
Are lightweight LN wallets vulnerable to transaction withholding?
Why do IPv6 unique local addresses have to have a /48 prefix?
Is camera lens focus an exact point or a range?
Does the Mind Blank spell prevent the target from being frightened?
How do I implement a file system driver driver in Linux?
Divine apple island
Can somebody explain Brexit in a few child-proof sentences?
Proof of Lemma: Every nonzero integer can be written as a product of primes
List of people who lose a child in תנ"ך
How do I extrude a face to a single vertex
Two-sided logarithm inequality
Can I use my Chinese passport to enter China after I acquired another citizenship?
How do ground effect vehicles perform turns?
Could the E-bike drivetrain wear down till needing replacement after 400 km?
Can someone explain how this makes sense electrically?
Engineer refusing to file/disclose patents
Do Legal Documents Require Signing In Standard Pen Colors?
MAXDOP Settings for SQL Server 2014
Can I sign legal documents with a smiley face?
If a character with the Alert feat rolls a crit fail on their Perception check, are they surprised?
How much character growth crosses the line into breaking the character
Intersection of a sphere and a plane knowing equations
How can I draw this cylinder with 3D?Rotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?Is it possible to draw a 3d cylinder using TikZ-3dplot?Numerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionSphere Tangent to PlanePlotting intersection of a sphere with a planeLine up nested tikz enviroments or how to get rid of themDrawing a line, a plane, and a sphere, and their points of intersectionPlotting the intersection of a sphere with a plane
I am trying draw a circle is intersection of a plane has equation 2 x − 2 y + z − 15 = 0
and the equation of the sphere is ( x − 1)^2 + ( y + 1)^ 2 + ( z − 2)^ 2 − 25 = 0
.
The plane cut the sphere is a circle with centre (3,-3,3
and radius r = 4
.
I can't draw the circle. I tried
documentclass[12pt,border = 2 mm]{standalone}
usepackage{tikz}
usepackage{tikz-3dplot}
usetikzlibrary{arrows,calc,backgrounds}
begin{document}
tdplotsetmaincoords{60}{110}
begin{tikzpicture}[tdplot_main_coords]
path
coordinate (T) at (3,-3,3)
coordinate (I) at (1,-1,2);
foreach v/position in {T/above,I/below} {
draw[fill=black] (v) circle (0.7pt) node [position=0.2mm] {$v$};
}
draw[dashed] (T) circle[radius={4}];
begin{scope}[tdplot_screen_coords, on background layer]
pgfmathsetmacro{R}{5}%
fill[ball color=purple, opacity=1.0] (I) circle (R);
end{scope}
end{tikzpicture}
end{document}
How can I draw the circle?
tikz-pgf tikz-3dplot
add a comment |
I am trying draw a circle is intersection of a plane has equation 2 x − 2 y + z − 15 = 0
and the equation of the sphere is ( x − 1)^2 + ( y + 1)^ 2 + ( z − 2)^ 2 − 25 = 0
.
The plane cut the sphere is a circle with centre (3,-3,3
and radius r = 4
.
I can't draw the circle. I tried
documentclass[12pt,border = 2 mm]{standalone}
usepackage{tikz}
usepackage{tikz-3dplot}
usetikzlibrary{arrows,calc,backgrounds}
begin{document}
tdplotsetmaincoords{60}{110}
begin{tikzpicture}[tdplot_main_coords]
path
coordinate (T) at (3,-3,3)
coordinate (I) at (1,-1,2);
foreach v/position in {T/above,I/below} {
draw[fill=black] (v) circle (0.7pt) node [position=0.2mm] {$v$};
}
draw[dashed] (T) circle[radius={4}];
begin{scope}[tdplot_screen_coords, on background layer]
pgfmathsetmacro{R}{5}%
fill[ball color=purple, opacity=1.0] (I) circle (R);
end{scope}
end{tikzpicture}
end{document}
How can I draw the circle?
tikz-pgf tikz-3dplot
add a comment |
I am trying draw a circle is intersection of a plane has equation 2 x − 2 y + z − 15 = 0
and the equation of the sphere is ( x − 1)^2 + ( y + 1)^ 2 + ( z − 2)^ 2 − 25 = 0
.
The plane cut the sphere is a circle with centre (3,-3,3
and radius r = 4
.
I can't draw the circle. I tried
documentclass[12pt,border = 2 mm]{standalone}
usepackage{tikz}
usepackage{tikz-3dplot}
usetikzlibrary{arrows,calc,backgrounds}
begin{document}
tdplotsetmaincoords{60}{110}
begin{tikzpicture}[tdplot_main_coords]
path
coordinate (T) at (3,-3,3)
coordinate (I) at (1,-1,2);
foreach v/position in {T/above,I/below} {
draw[fill=black] (v) circle (0.7pt) node [position=0.2mm] {$v$};
}
draw[dashed] (T) circle[radius={4}];
begin{scope}[tdplot_screen_coords, on background layer]
pgfmathsetmacro{R}{5}%
fill[ball color=purple, opacity=1.0] (I) circle (R);
end{scope}
end{tikzpicture}
end{document}
How can I draw the circle?
tikz-pgf tikz-3dplot
I am trying draw a circle is intersection of a plane has equation 2 x − 2 y + z − 15 = 0
and the equation of the sphere is ( x − 1)^2 + ( y + 1)^ 2 + ( z − 2)^ 2 − 25 = 0
.
The plane cut the sphere is a circle with centre (3,-3,3
and radius r = 4
.
I can't draw the circle. I tried
documentclass[12pt,border = 2 mm]{standalone}
usepackage{tikz}
usepackage{tikz-3dplot}
usetikzlibrary{arrows,calc,backgrounds}
begin{document}
tdplotsetmaincoords{60}{110}
begin{tikzpicture}[tdplot_main_coords]
path
coordinate (T) at (3,-3,3)
coordinate (I) at (1,-1,2);
foreach v/position in {T/above,I/below} {
draw[fill=black] (v) circle (0.7pt) node [position=0.2mm] {$v$};
}
draw[dashed] (T) circle[radius={4}];
begin{scope}[tdplot_screen_coords, on background layer]
pgfmathsetmacro{R}{5}%
fill[ball color=purple, opacity=1.0] (I) circle (R);
end{scope}
end{tikzpicture}
end{document}
How can I draw the circle?
tikz-pgf tikz-3dplot
tikz-pgf tikz-3dplot
asked 5 mins ago
minhthien_2016minhthien_2016
1,3561917
1,3561917
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
});
}
});
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%2f481283%2fintersection-of-a-sphere-and-a-plane-knowing-equations%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
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%2f481283%2fintersection-of-a-sphere-and-a-plane-knowing-equations%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