forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rmpath_drake.m
28 lines (25 loc) · 1.04 KB
/
rmpath_drake.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
function rmpath_drake
try
load drake_config.mat;
catch
disp('drake doesn''t appear to be in your path');
return;
end
rmpath(fullfile(conf.root,'systems'));
rmpath(fullfile(conf.root,'systems','plants'));
rmpath(fullfile(conf.root,'systems','plants','affordance'));
rmpath(fullfile(conf.root,'systems','plants','collision'));
rmpath(fullfile(conf.root,'systems','controllers'));
rmpath(fullfile(conf.root,'systems','trajectories'));
rmpath(fullfile(conf.root,'systems','frames'));
rmpath(fullfile(conf.root,'systems','visualizers'));
rmpath(fullfile(conf.root,'solvers'));
rmpath(fullfile(conf.root,'util'));
rmpath(fullfile(conf.root,'util','obstacles'));
rmpath(fullfile(conf.root,'thirdParty'));
rmpath(fullfile(conf.root,'thirdParty','path'));
rmpath(fullfile(conf.root,'thirdParty','spatial'));
rmpath(fullfile(conf.root,'thirdParty','cprintf'));
rmpath(fullfile(conf.root,'thirdParty','GetFullPath'));
javarmpath(fullfile(pods_get_base_path,'share','java','drake.jar'));
javarmpath(fullfile(pods_get_base_path,'share','java','lcmtypes_drake.jar'));