Code covered by the BSD License  

Highlights from
Sim.I.am

image thumbnail
from Sim.I.am by Jean-Pierre de la Croix
A MATLAB-based educational bridge between theory and practice in robotics.

simiam.app.ControlApp
classdef ControlApp < handle

% Copyright (C) 2013, Georgia Tech Research Corporation
% see the LICENSE file included with this software
    
    properties
        supervisors
        timeout
        time
        goals
        index
        root
    end
    
    methods
        function obj = ControlApp(root)
            obj.supervisors = mcodekit.list.dl_list();
            obj.time = 0;
            obj.root = root;
        end
        
        function run(obj, dt)
            
        end
        
        function ui_press_mouse(obj, click_src)
            obj.supervisors.head_.key_.goal = click_src;
        end
    end
    
end

Contact us