I am writing a GUI for our final year project that controls the sails of a computer animated boat and shows a chartplotter (only a picture of the race area overwritten by a code plotting a little arrow moving) and the speed as well as the wind speed and its direction.
As the sails are controlled within the GUI, I would like to avoid the GUI to overwrite my handles file but still updates the chartplotter and the speeds dynamically.
How can I avoid overwriting the handles file?
function varargout = chartplotter_figure(varargin)
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @chartplotter_figure_OpeningFcn, ...
'gui_OutputFcn', @chartplotter_figure_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before chartplotter_figure is made visible.
function chartplotter_figure_OpeningFcn(hObject, eventdata, handles, varargin)
