www.gusucode.com > 机器人工具箱 - robot源码程序 > robot\@robot\subsasgn.m

    %SUBSASGN Assignment methods on a ROBOT object
%
%	ROBOT.gravity = [gx gy gz]
%	ROBOT.base = 4x4 homog xform
%	ROBOT.tool = 4x4 homog xform
%	ROBOT.qlim = [qlower qupper]	set joint limits
%	ROBOT.offset 		set joint offset vector
%
%	ROBOT.name = 'name'
%	ROBOT.manuf = 'who built it'
%	ROBOT.comment = 'general comment'
%
%	ROBOT.plotopt 	set options for plot(robot)
%	ROBOT.lineopt 	set graphical line drawing option string for links
%	ROBOT.shadowopt set graphical line drawing option string for shadow
%	ROBOT.handle	save graphics handles in object
%	ROBOT.q 	set joint angles for plot(robot)

% Copyright (C) 1999-2008, by Peter I. Corke
%
% This file is part of The Robotics Toolbox for Matlab (RTB).
% 
% RTB is free software: you can redistribute it and/or modify
% it under the terms of the GNU Lesser General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
% 
% RTB is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
% GNU Lesser General Public License for more details.
% 
% You should have received a copy of the GNU Leser General Public License
% along with RTB.  If not, see <http://www.gnu.org/licenses/>.

function r = subsasgn(r, s, v)

	if s(1).type  ~= '.'
		error('only .field supported')
	end
	switch s(1).subs,
	%%%%%%%%% extensions
	case 'tool',
		if ~ishomog(v)
			error('base must be a homogeneous transform');
		end
		r.tool = v;
	case 'base',
		if ~ishomog(v)
			error('base must be a homogeneous transform');
		end
		r.base = v;
	case 'offset',
		L = r.link;
		for i=1:r.n,
			L{i}.offset = v(i);
		end
	case 'qlim',
		if numrows(v) ~= r.n,
			error('insufficient rows in joint limit matrix');
		end
		L = r.link;
		for i=1:r.n,
			L{i}.qlim = v(i,:);
		end
	case 'gravity',
		r.gravity = v;
	%%%%%%%%% graphics support
	case 'q',
		r.q = v;
	case 'lineopt',
		r.lineopt = v;
	case 'shadowopt',
		r.shadowopt = v;
	case 'plotopt',
		r.plotopt = v;
	case 'handle',
		r.handle = v;

	%%%%%%%%% descriptive strings
	case 'name',
		r.name = v;
	case 'manuf',
		r.manuf = v;
	case 'comment',
		r.comment = v;
	otherwise, error('Unknown method')
	end