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])

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!