How to convert a 3D line into a 2D line?












0












$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 } }









share|cite|improve this question









$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
















0












$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 } }









share|cite|improve this question









$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














0












0








0





$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 } }









share|cite|improve this question









$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






share|cite|improve this question













share|cite|improve this question











share|cite|improve this question




share|cite|improve this question










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


















  • $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










2 Answers
2






active

oldest

votes


















0












$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 .






share|cite|improve this answer











$endgroup$





















    0












    $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".






    share|cite|improve this answer









    $endgroup$














      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
      });


      }
      });














      draft saved

      draft discarded


















      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









      0












      $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 .






      share|cite|improve this answer











      $endgroup$


















        0












        $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 .






        share|cite|improve this answer











        $endgroup$
















          0












          0








          0





          $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 .






          share|cite|improve this answer











          $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 .







          share|cite|improve this answer














          share|cite|improve this answer



          share|cite|improve this answer








          edited Feb 1 at 21:06

























          answered Feb 1 at 0:59









          S SpringS Spring

          1874




          1874























              0












              $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".






              share|cite|improve this answer









              $endgroup$


















                0












                $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".






                share|cite|improve this answer









                $endgroup$
















                  0












                  0








                  0





                  $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".






                  share|cite|improve this answer









                  $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".







                  share|cite|improve this answer












                  share|cite|improve this answer



                  share|cite|improve this answer










                  answered Feb 1 at 0:13









                  jmerryjmerry

                  17k11633




                  17k11633






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      MongoDB - Not Authorized To Execute Command

                      in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                      How to fix TextFormField cause rebuild widget in Flutter