-
Notifications
You must be signed in to change notification settings - Fork 49
/
initmsh.m
32 lines (24 loc) · 864 Bytes
/
initmsh.m
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
29
function initmsh
%INITMSH a helper function to set-up MATLAB's path statement
%for MESH2D.
%
% See also REFINE2, SMOOTH2, TRIDEMO
%-----------------------------------------------------------
% Darren Engwirda : 2017 --
% Email : [email protected]
% Last updated : 08/07/2018
%-----------------------------------------------------------
%
%------------------------------------ push path to utilities
filename = mfilename('fullpath') ;
filepath = fileparts( filename ) ;
addpath([filepath,'/aabb-tree']) ;
addpath([filepath,'/geom-util']) ;
addpath([filepath,'/hfun-util']) ;
addpath([filepath,'/hjac-util']) ;
addpath([filepath,'/mesh-ball']) ;
addpath([filepath,'/mesh-cost']) ;
addpath([filepath,'/mesh-file']) ;
addpath([filepath,'/mesh-util']) ;
addpath([filepath,'/poly-test']) ;
end