forked from openep/openep-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetFaces.m
More file actions
28 lines (26 loc) · 747 Bytes
/
Copy pathgetFaces.m
File metadata and controls
28 lines (26 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
function faces = getFaces( userdata )
% GETFACES Returns the faces referenced by userdata
%
% Usage:
% faces = getFaces( userdata )
% Where:
% userdata - see importcarto_mem
% faces - all the faces
%
% GETFACES Returns the faces referenced by userdata
%
% Author: Steven Williams (2020) (Copyright)
% SPDX-License-Identifier: Apache-2.0
%
% Modifications -
%
% Info on Code Testing:
% ---------------------------------------------------------------
% faces = getFaces( userdata )
% ---------------------------------------------------------------
%
% ---------------------------------------------------------------
% code
% ---------------------------------------------------------------
faces = userdata.surface.triRep.Triangulation;
end