convert 3D plane to 2D plane
12 ビュー (過去 30 日間)
古いコメントを表示
My Problem/My aim:
I have a plane in 3D, described in the form ax+by+cz=0. The equation was formed with the edge points of the plane, which I know as well. This plane is tilted, so that the z-coordinates are not always the same. Now I want to convert this 3D plane into a 2D plane, so that I can take its points as an input for fitgeotrans().
What I have done:
I tried a projection from the edge points, however the resulting points are too close together, which leads me to the thought, that this is not the right method for me. The calculation was similar to x/z and y/z.
In my research I have not found any matlab functions, which will do the trick. (maybe there is one and I haven't found it.)
I found this post: https://de.mathworks.com/matlabcentral/answers/81694-rotate-3d-plane-to-a-new-2d-coordinate-system , but honestly I do not have an axis around which I rotate the plane.
However I found this answered question, which coul be useful to me, but I am irritated by the naming and repetition of the variables.
Now my question is: Is there any matlab function I have overseen? Does someone know this method mentioned in the line before or has someone a differenet approach?
Any answers are deeply appreciated.
0 件のコメント
採用された回答
Matt J
2021 年 10 月 1 日
One possible projection is,
[x2;y2]=null([a,b,c]).'*[x3;y3;z3]
However, the mapping you are looking for is non-unique. There are infinite 2D bases for a 3D plane.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!