www.gusucode.com > mbcdesign 工具箱 matlab 源码程序 > mbcdesign/@designdev/resetCurrentPoint.m

    function obj = resetCurrentPoint(obj)
%RESETCURRENTPOINT

%  Copyright 2000-2004 The MathWorks, Inc. and Ford Global Technologies, Inc.



obj.currentPoint = 1;

if ~isempty(obj.next)
	obj.next = resetCurrentPoint(obj.next);
end