Home > matGeom > setupMatGeom.m

setupMatGeom

PURPOSE ^

SETUPMATGEOM Add the different directories of MatGeom to the path.

SYNOPSIS ^

function setupMatGeom(varargin)

DESCRIPTION ^

SETUPMATGEOM Add the different directories of MatGeom to the path.

   Usage:
   setupMatGeom;

   Example
   setupMatGeom;

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function setupMatGeom(varargin)
0002 %SETUPMATGEOM Add the different directories of MatGeom to the path.
0003 %
0004 %   Usage:
0005 %   setupMatGeom;
0006 %
0007 %   Example
0008 %   setupMatGeom;
0009 %
0010 %
0011 
0012 % ------
0013 % Author: David Legland
0014 % E-mail: david.legland@inrae.fr
0015 % Created: 2011-01-11, using Matlab 7.9.0.529 (R2009b)
0016 % Copyright 2011-2024 INRA - Cepia Software Platform
0017 
0018 % extract library path
0019 fileName = mfilename('fullpath');
0020 libDir = fileparts(fileName);
0021 
0022 moduleNames = {...
0023     'geom2d', ...
0024     'polygons2d', ...
0025     'graphs', ...
0026     'geom3d', ...
0027     'meshes3d', ...
0028     'utils'};
0029 
0030 disp('Installing MatGeom Library');
0031 addpath(libDir);
0032 
0033 % add all library modules
0034 for i = 1:length(moduleNames)
0035     name = moduleNames{i};
0036     fprintf('Adding module: %-20s', name);
0037     addpath(fullfile(libDir, name));
0038     disp(' (ok)');
0039 end
0040

Generated on Thu 21-Nov-2024 11:30:22 by m2html © 2003-2022