LAT Hologramm-Software 2.0
Loading...
Searching...
No Matches
Stage.m
Go to the documentation of this file.
1classdef (Abstract) Stage < Device
2
4 properties (Access = public)
5 X;
6 Y;
7 Z;
8 showStatus;
9 connectionType;
11 end
13
14 methods (Abstract)
15 getPosition(obj);
16 setPosition(obj, x,y,z);
17 end
19 methods
20
21 end
22end
23
Definition: Device.m:6
Definition: Stage.m:4