Skip to content

Commit 3dd44d1

Browse files
Anat: Add 40962 vertex option in tess_remesh (#915)
1 parent d86ec5e commit 3dd44d1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

toolbox/anatomy/tess_remesh.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
% - SurfaceFile : Absolute or relative path to the surface file to remesh
99
% - vert : [nVertices x 3] matrix of xyz vertices
1010
% - nvert : Number of vertices in the output mesh, possible values
11-
% [12 32 42 92 122 162 273 362 482 642 812 1082 1442 1922 2432 2562 3242 4322 5762 7682 7292 9722 10242 12962]
11+
% [12 32 42 92 122 162 273 362 482 642 812 1082 1442 1922 2432 2562 3242 4322 5762 7682 7292 9722 10242 12962, 40962]
1212
% - isCenter : If 1, center the surface points on the center of mass first (average of all the points)
1313

1414
% @=============================================================================
@@ -39,7 +39,7 @@
3939
% Number of vertices
4040
if (nargin < 2) || isempty(nvert)
4141
% Ask user the new number of vertices
42-
VertList = {'162', '273', '362', '482', '642', '812', '1082', '1442', '1922', '2432', '2562', '3242', '4322', '5762', '7682', '7292', '9722', '10242', '12962'};
42+
VertList = {'162', '273', '362', '482', '642', '812', '1082', '1442', '1922', '2432', '2562', '3242', '4322', '5762', '7682', '7292', '9722', '10242', '12962', '40962'};
4343
nvert = java_dialog('combo', ['Deform a sphere to map a simple closed surface.' 10 10 ...
4444
'Warning: The surface has to be parametrizable in spherical coordinates.' 10 ...
4545
'If the surface is not a simple envelope, the output will be wrong.' 10 ...

0 commit comments

Comments
 (0)