-
Notifications
You must be signed in to change notification settings - Fork 0
/
props.m
36 lines (27 loc) · 889 Bytes
/
props.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
29
30
31
32
33
34
35
36
% Authors: Alejandro R. Mosteo, Danilo Tardioli, Eduardo Montijano
% Copyright 2018-9999 Monmostar
% Licensed under GPLv3 https://www.gnu.org/licenses/gpl-3.0.en.html
%
classdef props < handle
% Ref class to avoid updating the handles every time
properties(Access=public)
competing = false % SET TO TRUE TO AVOID STUDENTS CHANGING CERTAIN THINGS
% Currently: no effect
running = false % Simulation is running
sau % of class saudefense
widget_controller
widget_plant % Widgets of class i_tfwidget
h_r
h_y % Drawers for history
tff = @tf_factory.ss;
league = true
% When league, plant is fixed and always disabled, so final scores can
% be submitted with guarantees
end
methods(Static)
function this = props
this.h_r = drawer();
this.h_y = drawer();
end
end
end