How to fill the surface in 3D..?

1 回表示 (過去 30 日間)
Lalit Patil
Lalit Patil 2012 年 12 月 7 日
I have this 3D data file, and i am creating a 3D of it using,
.................................................
fileID = fopen('N3d.txt');
C = textscan(fileID, '%f %f %f');
fclose(fileID);
x=cell2mat(C(:,1));
y=cell2mat(C(:,2));
z=cell2mat(C(:,3));
patch(x,z,y,'R')
view(3)
axis equal off tight vis3d; camzoom(1.2)
colormap(spring)
rotate3d on
...............................................
And it gives 3D image, now i want to see what the actual object it is..?
So, for this i will require to fill that surface,
so, how to do.?
  1 件のコメント
Jan
Jan 2012 年 12 月 7 日
編集済み: Jan 2012 年 12 月 7 日
What's wrong with properly formatted code? It is such a helpful feature that I cannot understand, why users in this forum do not want to use it.

サインインしてコメントする。

回答 (1 件)

Jan
Jan 2012 年 12 月 7 日
編集済み: Jan 2012 年 12 月 7 日
Filling a surface plot means using non-transparent and colored patch faces. See the properties of patch(), especially the 'FaceColor'.
Reading the documentation of a command is usually more efficient to ask in the forum and get the answer, that the documentation contains enough information and rephrasing them would be less efficient.
  4 件のコメント
Jan
Jan 2012 年 12 月 9 日
@Lalit Patil: 1. The linked picture contains three different views of one object. 2. patch() is a built-in function. Why do you think, that it uses an isosurface function, what does this detail mean and how is this connected to the question? 3. Please do not post "it shows an error" with out showing the code and a copy of the error message. How could we suggest an improvement without knowing any detail? 4. "not a satisfactory result" does not explain anything also: Can I guess what is satisfying for you? 5. Did you consider to use surf instead of patch? Look at the examples in doc surf.
Why do you decide not to format the code in your question or in the comments?
Lalit Patil
Lalit Patil 2012 年 12 月 14 日
編集済み: Lalit Patil 2012 年 12 月 14 日
This is my text file to create 3d.. I am creating 3d of it using above code and it creates, now i want to fill this 3d image with some material so it looks like filled and smooth and one can identify an object..
The picture i posted in link is the example of filled object..
No, i am not thinking to use surf..
Format code has been solved..

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLighting, Transparency, and Shading についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by