Cut a 3D object with the IsoCut function present on FileExchange
2 ビュー (過去 30 日間)
古いコメントを表示
I encountered this problem in the function 'IsoCut_demo3_test' -> line 71 'IsoCut' -> line 61 'IsoContour'.
Can anyone help me position the line that is generated in the first figure corresponding to the plane?
vertices = importdata("NODES.mat");
faces = importdata("FACES.mat");
TR.vertices = vertices;
TR.faces = faces;
P = importdata("V_plane.mat");
iv = 0.6;
IsoCut_demo3_test(iv,TR,P);
0 件のコメント
採用された回答
akshatsood
2024 年 1 月 3 日
編集済み: akshatsood
2024 年 1 月 3 日
I understand that you seek guidance in positioning the line upon the designated plane of the three-dimensional object at hand. After conducting a thorough review of the code files you have provided, it became clear that the key to controlling the line's position lies within the manipulation of the "iv" variable. Through a series of experiments with the values of "iv" variable, the most effective setting to achieve the precise alignment comes out to be "0.42". Here is the updated code snippet for your reference
vertices = importdata("NODES.mat");
faces = importdata("FACES.mat");
TR.vertices = vertices;
TR.faces = faces;
P = importdata("V_plane.mat");
iv = 0.42; % influences position of line
IsoCut_demo3_test(iv,TR,P);
Please find the 3D object below which features the line in the desired position
I hope this helps.
2 件のコメント
akshatsood
2024 年 5 月 21 日
編集済み: akshatsood
2024 年 5 月 21 日
Hi @Alberto Acri, without manual intervention, the exact process to achieve this remains uncertain. Given that this code is taken from File Exchange, it would be advisable to reach out to the author directly for further insights. I recommend utilizing the discussion section available on the File Exchange page to connect with the author.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Robust Control Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!