How to convert a 3D line into a 2D line?
$begingroup$
I wanted to know if there is an algorithm I could use to show a 3D line on a 2D screen. The line is made up of 2 points with X, Y, Z coordinates.
My end goal is to have a bunch of lines that may make up something like cubes, then to be able to move a camera around to view these cubes. The code below is what I have so far.
type Point =
{ X : int
Y : int
Z : int }
type Line =
{ A : Point
B : Point }
let line =
{ A = { X = 0; Y = 0; Z = 0 }
B = { X = 50; Y = 50; Z = 50 } }
geometry coordinate-systems
$endgroup$
add a comment |
$begingroup$
I wanted to know if there is an algorithm I could use to show a 3D line on a 2D screen. The line is made up of 2 points with X, Y, Z coordinates.
My end goal is to have a bunch of lines that may make up something like cubes, then to be able to move a camera around to view these cubes. The code below is what I have so far.
type Point =
{ X : int
Y : int
Z : int }
type Line =
{ A : Point
B : Point }
let line =
{ A = { X = 0; Y = 0; Z = 0 }
B = { X = 50; Y = 50; Z = 50 } }
geometry coordinate-systems
$endgroup$
$begingroup$
Any answer to your question would necessitate a course in 3D rendering beginning by the concept of camera model... This is almost a whole domain in itself.
$endgroup$
– Jean Marie
Feb 1 at 0:05
$begingroup$
Here is a part of such lecture notes : songho.ca/opengl/gl_projectionmatrix.html
$endgroup$
– Jean Marie
Feb 1 at 20:32
add a comment |
$begingroup$
I wanted to know if there is an algorithm I could use to show a 3D line on a 2D screen. The line is made up of 2 points with X, Y, Z coordinates.
My end goal is to have a bunch of lines that may make up something like cubes, then to be able to move a camera around to view these cubes. The code below is what I have so far.
type Point =
{ X : int
Y : int
Z : int }
type Line =
{ A : Point
B : Point }
let line =
{ A = { X = 0; Y = 0; Z = 0 }
B = { X = 50; Y = 50; Z = 50 } }
geometry coordinate-systems
$endgroup$
I wanted to know if there is an algorithm I could use to show a 3D line on a 2D screen. The line is made up of 2 points with X, Y, Z coordinates.
My end goal is to have a bunch of lines that may make up something like cubes, then to be able to move a camera around to view these cubes. The code below is what I have so far.
type Point =
{ X : int
Y : int
Z : int }
type Line =
{ A : Point
B : Point }
let line =
{ A = { X = 0; Y = 0; Z = 0 }
B = { X = 50; Y = 50; Z = 50 } }
geometry coordinate-systems
geometry coordinate-systems
asked Jan 31 at 22:30
AlanayAlanay
1104
1104
$begingroup$
Any answer to your question would necessitate a course in 3D rendering beginning by the concept of camera model... This is almost a whole domain in itself.
$endgroup$
– Jean Marie
Feb 1 at 0:05
$begingroup$
Here is a part of such lecture notes : songho.ca/opengl/gl_projectionmatrix.html
$endgroup$
– Jean Marie
Feb 1 at 20:32
add a comment |
$begingroup$
Any answer to your question would necessitate a course in 3D rendering beginning by the concept of camera model... This is almost a whole domain in itself.
$endgroup$
– Jean Marie
Feb 1 at 0:05
$begingroup$
Here is a part of such lecture notes : songho.ca/opengl/gl_projectionmatrix.html
$endgroup$
– Jean Marie
Feb 1 at 20:32
$begingroup$
Any answer to your question would necessitate a course in 3D rendering beginning by the concept of camera model... This is almost a whole domain in itself.
$endgroup$
– Jean Marie
Feb 1 at 0:05
$begingroup$
Any answer to your question would necessitate a course in 3D rendering beginning by the concept of camera model... This is almost a whole domain in itself.
$endgroup$
– Jean Marie
Feb 1 at 0:05
$begingroup$
Here is a part of such lecture notes : songho.ca/opengl/gl_projectionmatrix.html
$endgroup$
– Jean Marie
Feb 1 at 20:32
$begingroup$
Here is a part of such lecture notes : songho.ca/opengl/gl_projectionmatrix.html
$endgroup$
– Jean Marie
Feb 1 at 20:32
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Draw an isometric box with faint lines and then connect the front left-hand lower corner to the rear right-hand upper corner with a strong line.
Additional post :
I used a land survey system and calculated 2D N,E coordinates of an isometric box as
Point A, N,E of 0 , 0
Point B, N,E of -25.00 , 43.3013
Point C, N,E of 0.00 , 86.6025
Point D, N,E of 50.00 , 86.6025
Then the 2D direction and distance of the required line set in perspective is 60 degrees azimuth at a distance of 100 between Point A and Point D. The true distance of the 3D line would be the Square Root of (50^2 + 50^2 + 50^2) or 86.60 .
$endgroup$
add a comment |
$begingroup$
What you want from there? Projections, to take that 3-dimensional point data to a plane to put on screen. To project a line, of course, we project the two points we used to define it.
Of course, the best solution? Find a standard library that implements this stuff already. In Asymptote (a language specializing in graphics, that I use when I want to create a mathematical diagram), that's the "three" module. Over 3000 lines of code, over 150 instances of "projection".
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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
},
noCode: 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%2fmath.stackexchange.com%2fquestions%2f3095577%2fhow-to-convert-a-3d-line-into-a-2d-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
$begingroup$
Draw an isometric box with faint lines and then connect the front left-hand lower corner to the rear right-hand upper corner with a strong line.
Additional post :
I used a land survey system and calculated 2D N,E coordinates of an isometric box as
Point A, N,E of 0 , 0
Point B, N,E of -25.00 , 43.3013
Point C, N,E of 0.00 , 86.6025
Point D, N,E of 50.00 , 86.6025
Then the 2D direction and distance of the required line set in perspective is 60 degrees azimuth at a distance of 100 between Point A and Point D. The true distance of the 3D line would be the Square Root of (50^2 + 50^2 + 50^2) or 86.60 .
$endgroup$
add a comment |
$begingroup$
Draw an isometric box with faint lines and then connect the front left-hand lower corner to the rear right-hand upper corner with a strong line.
Additional post :
I used a land survey system and calculated 2D N,E coordinates of an isometric box as
Point A, N,E of 0 , 0
Point B, N,E of -25.00 , 43.3013
Point C, N,E of 0.00 , 86.6025
Point D, N,E of 50.00 , 86.6025
Then the 2D direction and distance of the required line set in perspective is 60 degrees azimuth at a distance of 100 between Point A and Point D. The true distance of the 3D line would be the Square Root of (50^2 + 50^2 + 50^2) or 86.60 .
$endgroup$
add a comment |
$begingroup$
Draw an isometric box with faint lines and then connect the front left-hand lower corner to the rear right-hand upper corner with a strong line.
Additional post :
I used a land survey system and calculated 2D N,E coordinates of an isometric box as
Point A, N,E of 0 , 0
Point B, N,E of -25.00 , 43.3013
Point C, N,E of 0.00 , 86.6025
Point D, N,E of 50.00 , 86.6025
Then the 2D direction and distance of the required line set in perspective is 60 degrees azimuth at a distance of 100 between Point A and Point D. The true distance of the 3D line would be the Square Root of (50^2 + 50^2 + 50^2) or 86.60 .
$endgroup$
Draw an isometric box with faint lines and then connect the front left-hand lower corner to the rear right-hand upper corner with a strong line.
Additional post :
I used a land survey system and calculated 2D N,E coordinates of an isometric box as
Point A, N,E of 0 , 0
Point B, N,E of -25.00 , 43.3013
Point C, N,E of 0.00 , 86.6025
Point D, N,E of 50.00 , 86.6025
Then the 2D direction and distance of the required line set in perspective is 60 degrees azimuth at a distance of 100 between Point A and Point D. The true distance of the 3D line would be the Square Root of (50^2 + 50^2 + 50^2) or 86.60 .
edited Feb 1 at 21:06
answered Feb 1 at 0:59
S SpringS Spring
1874
1874
add a comment |
add a comment |
$begingroup$
What you want from there? Projections, to take that 3-dimensional point data to a plane to put on screen. To project a line, of course, we project the two points we used to define it.
Of course, the best solution? Find a standard library that implements this stuff already. In Asymptote (a language specializing in graphics, that I use when I want to create a mathematical diagram), that's the "three" module. Over 3000 lines of code, over 150 instances of "projection".
$endgroup$
add a comment |
$begingroup$
What you want from there? Projections, to take that 3-dimensional point data to a plane to put on screen. To project a line, of course, we project the two points we used to define it.
Of course, the best solution? Find a standard library that implements this stuff already. In Asymptote (a language specializing in graphics, that I use when I want to create a mathematical diagram), that's the "three" module. Over 3000 lines of code, over 150 instances of "projection".
$endgroup$
add a comment |
$begingroup$
What you want from there? Projections, to take that 3-dimensional point data to a plane to put on screen. To project a line, of course, we project the two points we used to define it.
Of course, the best solution? Find a standard library that implements this stuff already. In Asymptote (a language specializing in graphics, that I use when I want to create a mathematical diagram), that's the "three" module. Over 3000 lines of code, over 150 instances of "projection".
$endgroup$
What you want from there? Projections, to take that 3-dimensional point data to a plane to put on screen. To project a line, of course, we project the two points we used to define it.
Of course, the best solution? Find a standard library that implements this stuff already. In Asymptote (a language specializing in graphics, that I use when I want to create a mathematical diagram), that's the "three" module. Over 3000 lines of code, over 150 instances of "projection".
answered Feb 1 at 0:13


jmerryjmerry
17k11633
17k11633
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics 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.
Use MathJax to format equations. MathJax reference.
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%2fmath.stackexchange.com%2fquestions%2f3095577%2fhow-to-convert-a-3d-line-into-a-2d-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
$begingroup$
Any answer to your question would necessitate a course in 3D rendering beginning by the concept of camera model... This is almost a whole domain in itself.
$endgroup$
– Jean Marie
Feb 1 at 0:05
$begingroup$
Here is a part of such lecture notes : songho.ca/opengl/gl_projectionmatrix.html
$endgroup$
– Jean Marie
Feb 1 at 20:32