color the surface of each triangle considering the RGB value

3 views (last 30 days)
Hi! I would like to color the surface of each triangle considering the RGB value applied to each node. Is it possible?
ANALYSIS(:,:)=load('file_color.txt');
figure(1)
x = ANALYSIS(:,1)
y = ANALYSIS(:,2)
z = ANALYSIS(:,3)
scatter3(x,y,z, 6, ANALYSIS(:,5:7)./255, 'filled');
grid on
axis equal
view([20,130,40])
  2 Comments
darova
darova on 19 Feb 2021
What is file_mesh.txt? Is it some information about triangles?
Alberto Acri
Alberto Acri on 19 Feb 2021
yes, exactly. The distribution of triangles on the 3D object.

Sign in to comment.

Answers (1)

KSSV
KSSV on 18 Feb 2021

Products

Community Treasure Hunt

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

Start Hunting!