How to combine 2d circle graph (with point which is rounded) into helix 3d graph (motion of particle along circle in the world line)
Clash Royale CLAN TAG#URR8PPP
up vote
4
down vote
favorite
Manipulate[Graphics[Circle, Red, PointSize@.05, Point@Cos[x], Sin[x]],
x, 0, 2 Pi]
and
Manipulate[ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 ÃÂ a], a, 1, 4]
graphics3d
New contributor
add a comment |Â
up vote
4
down vote
favorite
Manipulate[Graphics[Circle, Red, PointSize@.05, Point@Cos[x], Sin[x]],
x, 0, 2 Pi]
and
Manipulate[ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 ÃÂ a], a, 1, 4]
graphics3d
New contributor
1
Circle
is not compatible withParametricPlot3D
. You can useParametricPlot3D
to plot a circle, however.
â J. M. is somewhat okay.â¦
Oct 4 at 8:53
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
Manipulate[Graphics[Circle, Red, PointSize@.05, Point@Cos[x], Sin[x]],
x, 0, 2 Pi]
and
Manipulate[ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 ÃÂ a], a, 1, 4]
graphics3d
New contributor
Manipulate[Graphics[Circle, Red, PointSize@.05, Point@Cos[x], Sin[x]],
x, 0, 2 Pi]
and
Manipulate[ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 ÃÂ a], a, 1, 4]
graphics3d
graphics3d
New contributor
New contributor
edited Oct 4 at 10:57
kglr
164k8188388
164k8188388
New contributor
asked Oct 4 at 8:44
Max
211
211
New contributor
New contributor
1
Circle
is not compatible withParametricPlot3D
. You can useParametricPlot3D
to plot a circle, however.
â J. M. is somewhat okay.â¦
Oct 4 at 8:53
add a comment |Â
1
Circle
is not compatible withParametricPlot3D
. You can useParametricPlot3D
to plot a circle, however.
â J. M. is somewhat okay.â¦
Oct 4 at 8:53
1
1
Circle
is not compatible with ParametricPlot3D
. You can use ParametricPlot3D
to plot a circle, however.â J. M. is somewhat okay.â¦
Oct 4 at 8:53
Circle
is not compatible with ParametricPlot3D
. You can use ParametricPlot3D
to plot a circle, however.â J. M. is somewhat okay.â¦
Oct 4 at 8:53
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
4
down vote
Is this, what you are trying to get:
Manipulate[
Show[
ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 Pi],
ParametricPlot3D[Cos[t], Sin[t], 0, t, 0, 2 Pi,
PlotStyle -> Gray],
Graphics3D[PointSize[0.03], Gray, Point[Cos[a], Sin[a], 0], Red,
Point[Cos[a], Sin[a], a/4], Dashed,
Line[Cos[a], Sin[a], 0, Cos[a], Sin[a], a/4]]
],
a, 0.1, 0, 6]
yielding the following:
Have fun!
Please don't use JPG for non-photographic images! :)
â Andreas Rejbrand
Oct 4 at 11:19
@ Andreas Rejbrand Why not?
â Alexei Boulbitch
Oct 4 at 11:45
JPG is designed to be used with photographs, and it uses lossy compression that causes very disturbing artefacts in non-photographic images that contain a lot of solid-colour regions, text, curves, etc. I tried to explain this here, and there is also an XKCD for this: Google "XKCD PNG vs JPG". (Although, I must admit that I have almost never seen a JPG with as little artefacts as your image.)
â Andreas Rejbrand
Oct 4 at 11:58
@ Andreas Rejbrand Look, I always post jpg files here using the screenshots and it never makes problems.
â Alexei Boulbitch
Oct 4 at 12:18
No, indeed, you use so little compression that it is barely visible. But in almost all other cases where people save screenshots and diagrams as JPG, the artefacts are very visible. (Still, resaving your image as PNG reduces the file size by almost 50%.)
â Andreas Rejbrand
Oct 4 at 12:28
 |Â
show 1 more comment
up vote
4
down vote
Manipulate[Show[ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 ÃÂ a,
MeshFunctions -> #4 &, Mesh -> 2 ÃÂ a - 1/10000 ,
MeshStyle -> Directive[Red, PointSize[Large]],
PerformanceGoal -> "Quality"],
ParametricPlot3D[r Cos[t], r Sin[t], ÃÂ a/2, t, 0, 2 ÃÂ , r, 0, 1,
PlotStyle -> Opacity[.5],
MeshFunctions -> #5 &, Mesh -> 1 - 1/10000,
MeshStyle -> Red,
BoundaryStyle -> None, PerformanceGoal -> "Quality"],
PlotRange -> 0, 2 Pi], a, 1, 4]
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
Is this, what you are trying to get:
Manipulate[
Show[
ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 Pi],
ParametricPlot3D[Cos[t], Sin[t], 0, t, 0, 2 Pi,
PlotStyle -> Gray],
Graphics3D[PointSize[0.03], Gray, Point[Cos[a], Sin[a], 0], Red,
Point[Cos[a], Sin[a], a/4], Dashed,
Line[Cos[a], Sin[a], 0, Cos[a], Sin[a], a/4]]
],
a, 0.1, 0, 6]
yielding the following:
Have fun!
Please don't use JPG for non-photographic images! :)
â Andreas Rejbrand
Oct 4 at 11:19
@ Andreas Rejbrand Why not?
â Alexei Boulbitch
Oct 4 at 11:45
JPG is designed to be used with photographs, and it uses lossy compression that causes very disturbing artefacts in non-photographic images that contain a lot of solid-colour regions, text, curves, etc. I tried to explain this here, and there is also an XKCD for this: Google "XKCD PNG vs JPG". (Although, I must admit that I have almost never seen a JPG with as little artefacts as your image.)
â Andreas Rejbrand
Oct 4 at 11:58
@ Andreas Rejbrand Look, I always post jpg files here using the screenshots and it never makes problems.
â Alexei Boulbitch
Oct 4 at 12:18
No, indeed, you use so little compression that it is barely visible. But in almost all other cases where people save screenshots and diagrams as JPG, the artefacts are very visible. (Still, resaving your image as PNG reduces the file size by almost 50%.)
â Andreas Rejbrand
Oct 4 at 12:28
 |Â
show 1 more comment
up vote
4
down vote
Is this, what you are trying to get:
Manipulate[
Show[
ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 Pi],
ParametricPlot3D[Cos[t], Sin[t], 0, t, 0, 2 Pi,
PlotStyle -> Gray],
Graphics3D[PointSize[0.03], Gray, Point[Cos[a], Sin[a], 0], Red,
Point[Cos[a], Sin[a], a/4], Dashed,
Line[Cos[a], Sin[a], 0, Cos[a], Sin[a], a/4]]
],
a, 0.1, 0, 6]
yielding the following:
Have fun!
Please don't use JPG for non-photographic images! :)
â Andreas Rejbrand
Oct 4 at 11:19
@ Andreas Rejbrand Why not?
â Alexei Boulbitch
Oct 4 at 11:45
JPG is designed to be used with photographs, and it uses lossy compression that causes very disturbing artefacts in non-photographic images that contain a lot of solid-colour regions, text, curves, etc. I tried to explain this here, and there is also an XKCD for this: Google "XKCD PNG vs JPG". (Although, I must admit that I have almost never seen a JPG with as little artefacts as your image.)
â Andreas Rejbrand
Oct 4 at 11:58
@ Andreas Rejbrand Look, I always post jpg files here using the screenshots and it never makes problems.
â Alexei Boulbitch
Oct 4 at 12:18
No, indeed, you use so little compression that it is barely visible. But in almost all other cases where people save screenshots and diagrams as JPG, the artefacts are very visible. (Still, resaving your image as PNG reduces the file size by almost 50%.)
â Andreas Rejbrand
Oct 4 at 12:28
 |Â
show 1 more comment
up vote
4
down vote
up vote
4
down vote
Is this, what you are trying to get:
Manipulate[
Show[
ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 Pi],
ParametricPlot3D[Cos[t], Sin[t], 0, t, 0, 2 Pi,
PlotStyle -> Gray],
Graphics3D[PointSize[0.03], Gray, Point[Cos[a], Sin[a], 0], Red,
Point[Cos[a], Sin[a], a/4], Dashed,
Line[Cos[a], Sin[a], 0, Cos[a], Sin[a], a/4]]
],
a, 0.1, 0, 6]
yielding the following:
Have fun!
Is this, what you are trying to get:
Manipulate[
Show[
ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 Pi],
ParametricPlot3D[Cos[t], Sin[t], 0, t, 0, 2 Pi,
PlotStyle -> Gray],
Graphics3D[PointSize[0.03], Gray, Point[Cos[a], Sin[a], 0], Red,
Point[Cos[a], Sin[a], a/4], Dashed,
Line[Cos[a], Sin[a], 0, Cos[a], Sin[a], a/4]]
],
a, 0.1, 0, 6]
yielding the following:
Have fun!
answered Oct 4 at 9:11
Alexei Boulbitch
20.5k2369
20.5k2369
Please don't use JPG for non-photographic images! :)
â Andreas Rejbrand
Oct 4 at 11:19
@ Andreas Rejbrand Why not?
â Alexei Boulbitch
Oct 4 at 11:45
JPG is designed to be used with photographs, and it uses lossy compression that causes very disturbing artefacts in non-photographic images that contain a lot of solid-colour regions, text, curves, etc. I tried to explain this here, and there is also an XKCD for this: Google "XKCD PNG vs JPG". (Although, I must admit that I have almost never seen a JPG with as little artefacts as your image.)
â Andreas Rejbrand
Oct 4 at 11:58
@ Andreas Rejbrand Look, I always post jpg files here using the screenshots and it never makes problems.
â Alexei Boulbitch
Oct 4 at 12:18
No, indeed, you use so little compression that it is barely visible. But in almost all other cases where people save screenshots and diagrams as JPG, the artefacts are very visible. (Still, resaving your image as PNG reduces the file size by almost 50%.)
â Andreas Rejbrand
Oct 4 at 12:28
 |Â
show 1 more comment
Please don't use JPG for non-photographic images! :)
â Andreas Rejbrand
Oct 4 at 11:19
@ Andreas Rejbrand Why not?
â Alexei Boulbitch
Oct 4 at 11:45
JPG is designed to be used with photographs, and it uses lossy compression that causes very disturbing artefacts in non-photographic images that contain a lot of solid-colour regions, text, curves, etc. I tried to explain this here, and there is also an XKCD for this: Google "XKCD PNG vs JPG". (Although, I must admit that I have almost never seen a JPG with as little artefacts as your image.)
â Andreas Rejbrand
Oct 4 at 11:58
@ Andreas Rejbrand Look, I always post jpg files here using the screenshots and it never makes problems.
â Alexei Boulbitch
Oct 4 at 12:18
No, indeed, you use so little compression that it is barely visible. But in almost all other cases where people save screenshots and diagrams as JPG, the artefacts are very visible. (Still, resaving your image as PNG reduces the file size by almost 50%.)
â Andreas Rejbrand
Oct 4 at 12:28
Please don't use JPG for non-photographic images! :)
â Andreas Rejbrand
Oct 4 at 11:19
Please don't use JPG for non-photographic images! :)
â Andreas Rejbrand
Oct 4 at 11:19
@ Andreas Rejbrand Why not?
â Alexei Boulbitch
Oct 4 at 11:45
@ Andreas Rejbrand Why not?
â Alexei Boulbitch
Oct 4 at 11:45
JPG is designed to be used with photographs, and it uses lossy compression that causes very disturbing artefacts in non-photographic images that contain a lot of solid-colour regions, text, curves, etc. I tried to explain this here, and there is also an XKCD for this: Google "XKCD PNG vs JPG". (Although, I must admit that I have almost never seen a JPG with as little artefacts as your image.)
â Andreas Rejbrand
Oct 4 at 11:58
JPG is designed to be used with photographs, and it uses lossy compression that causes very disturbing artefacts in non-photographic images that contain a lot of solid-colour regions, text, curves, etc. I tried to explain this here, and there is also an XKCD for this: Google "XKCD PNG vs JPG". (Although, I must admit that I have almost never seen a JPG with as little artefacts as your image.)
â Andreas Rejbrand
Oct 4 at 11:58
@ Andreas Rejbrand Look, I always post jpg files here using the screenshots and it never makes problems.
â Alexei Boulbitch
Oct 4 at 12:18
@ Andreas Rejbrand Look, I always post jpg files here using the screenshots and it never makes problems.
â Alexei Boulbitch
Oct 4 at 12:18
No, indeed, you use so little compression that it is barely visible. But in almost all other cases where people save screenshots and diagrams as JPG, the artefacts are very visible. (Still, resaving your image as PNG reduces the file size by almost 50%.)
â Andreas Rejbrand
Oct 4 at 12:28
No, indeed, you use so little compression that it is barely visible. But in almost all other cases where people save screenshots and diagrams as JPG, the artefacts are very visible. (Still, resaving your image as PNG reduces the file size by almost 50%.)
â Andreas Rejbrand
Oct 4 at 12:28
 |Â
show 1 more comment
up vote
4
down vote
Manipulate[Show[ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 ÃÂ a,
MeshFunctions -> #4 &, Mesh -> 2 ÃÂ a - 1/10000 ,
MeshStyle -> Directive[Red, PointSize[Large]],
PerformanceGoal -> "Quality"],
ParametricPlot3D[r Cos[t], r Sin[t], ÃÂ a/2, t, 0, 2 ÃÂ , r, 0, 1,
PlotStyle -> Opacity[.5],
MeshFunctions -> #5 &, Mesh -> 1 - 1/10000,
MeshStyle -> Red,
BoundaryStyle -> None, PerformanceGoal -> "Quality"],
PlotRange -> 0, 2 Pi], a, 1, 4]
add a comment |Â
up vote
4
down vote
Manipulate[Show[ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 ÃÂ a,
MeshFunctions -> #4 &, Mesh -> 2 ÃÂ a - 1/10000 ,
MeshStyle -> Directive[Red, PointSize[Large]],
PerformanceGoal -> "Quality"],
ParametricPlot3D[r Cos[t], r Sin[t], ÃÂ a/2, t, 0, 2 ÃÂ , r, 0, 1,
PlotStyle -> Opacity[.5],
MeshFunctions -> #5 &, Mesh -> 1 - 1/10000,
MeshStyle -> Red,
BoundaryStyle -> None, PerformanceGoal -> "Quality"],
PlotRange -> 0, 2 Pi], a, 1, 4]
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Manipulate[Show[ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 ÃÂ a,
MeshFunctions -> #4 &, Mesh -> 2 ÃÂ a - 1/10000 ,
MeshStyle -> Directive[Red, PointSize[Large]],
PerformanceGoal -> "Quality"],
ParametricPlot3D[r Cos[t], r Sin[t], ÃÂ a/2, t, 0, 2 ÃÂ , r, 0, 1,
PlotStyle -> Opacity[.5],
MeshFunctions -> #5 &, Mesh -> 1 - 1/10000,
MeshStyle -> Red,
BoundaryStyle -> None, PerformanceGoal -> "Quality"],
PlotRange -> 0, 2 Pi], a, 1, 4]
Manipulate[Show[ParametricPlot3D[Cos[t], Sin[t], t/4, t, 0, 2 ÃÂ a,
MeshFunctions -> #4 &, Mesh -> 2 ÃÂ a - 1/10000 ,
MeshStyle -> Directive[Red, PointSize[Large]],
PerformanceGoal -> "Quality"],
ParametricPlot3D[r Cos[t], r Sin[t], ÃÂ a/2, t, 0, 2 ÃÂ , r, 0, 1,
PlotStyle -> Opacity[.5],
MeshFunctions -> #5 &, Mesh -> 1 - 1/10000,
MeshStyle -> Red,
BoundaryStyle -> None, PerformanceGoal -> "Quality"],
PlotRange -> 0, 2 Pi], a, 1, 4]
answered Oct 4 at 9:16
kglr
164k8188388
164k8188388
add a comment |Â
add a comment |Â
Max is a new contributor. Be nice, and check out our Code of Conduct.
Â
draft saved
draft discarded
Max is a new contributor. Be nice, and check out our Code of Conduct.
Max is a new contributor. Be nice, and check out our Code of Conduct.
Max is a new contributor. Be nice, and check out our Code of Conduct.
Â
draft saved
draft discarded
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f183099%2fhow-to-combine-2d-circle-graph-with-point-which-is-rounded-into-helix-3d-graph%23new-answer', 'question_page');
);
Post as a guest
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
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
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
1
Circle
is not compatible withParametricPlot3D
. You can useParametricPlot3D
to plot a circle, however.â J. M. is somewhat okay.â¦
Oct 4 at 8:53