|
| double | X [get] |
| |
| double | Y [get] |
| |
Definition at line 16 of file Microscope.cs.
◆ Stage()
Definition at line 28 of file Microscope.cs.
29 {
30 PointD d = GetPosition();
31 x = GetPositionX();
32 y = GetPositionY();
33 UpdateSWLimit();
34 }
◆ GetPosition()
| PointD BioLib.Stage.GetPosition |
( |
| ) |
|
Definition at line 82 of file Microscope.cs.
83 {
84 return new PointD(x, y);
85 }
◆ GetPositionX()
| double BioLib.Stage.GetPositionX |
( |
| ) |
|
Definition at line 72 of file Microscope.cs.
73 {
74 x = GetPosition().X;
75 return x;
76 }
◆ GetPositionY()
| double BioLib.Stage.GetPositionY |
( |
| ) |
|
Definition at line 77 of file Microscope.cs.
78 {
79 y = GetPosition().Y;
80 return y;
81 }
◆ MoveDown()
| void BioLib.Stage.MoveDown |
( |
double | m | ) |
|
Definition at line 91 of file Microscope.cs.
92 {
93 double y = GetPositionY() + m;
94 SetPositionY(y);
95 }
◆ MoveLeft()
| void BioLib.Stage.MoveLeft |
( |
double | m | ) |
|
Definition at line 101 of file Microscope.cs.
102 {
103 double x = GetPositionX() - m;
104 SetPositionX(x);
105 }
◆ MoveRight()
| void BioLib.Stage.MoveRight |
( |
double | m | ) |
|
Definition at line 96 of file Microscope.cs.
97 {
98 double x = GetPositionX() + m;
99 SetPositionX(x);
100 }
◆ MoveUp()
| void BioLib.Stage.MoveUp |
( |
double | m | ) |
|
Definition at line 86 of file Microscope.cs.
87 {
88 double y = GetPositionY() - m;
89 SetPositionY(y);
90 }
◆ SetPosition()
| void BioLib.Stage.SetPosition |
( |
double | px, |
|
|
double | py ) |
Definition at line 57 of file Microscope.cs.
58 {
59 x = px;
60 y = py;
61 }
◆ SetPositionX()
| void BioLib.Stage.SetPositionX |
( |
double | px | ) |
|
Definition at line 62 of file Microscope.cs.
63 {
64 x = px;
65 SetPosition(px, y);
66 }
◆ SetPositionY()
| void BioLib.Stage.SetPositionY |
( |
double | py | ) |
|
Definition at line 67 of file Microscope.cs.
68 {
69 y = py;
70 SetPosition(x, py);
71 }
◆ SetSWLimit()
| void BioLib.Stage.SetSWLimit |
( |
double | xmin, |
|
|
double | xmax, |
|
|
double | ymin, |
|
|
double | ymax ) |
◆ UpdateSWLimit()
| void BioLib.Stage.UpdateSWLimit |
( |
| ) |
|
◆ axisType
| Type BioLib.Stage.axisType |
|
static |
◆ maxX
◆ maxY
◆ minX
◆ minY
◆ moveWait
| int BioLib.Stage.moveWait = 250 |
◆ stageType
| Type BioLib.Stage.stageType |
|
static |
◆ xAxis
| object BioLib.Stage.xAxis |
|
static |
◆ yAxis
| object BioLib.Stage.yAxis |
|
static |
Definition at line 38 of file Microscope.cs.
39 {
40 get
41 {
42 return x;
43 }
44 }
Definition at line 45 of file Microscope.cs.
46 {
47 get
48 {
49 return y;
50 }
51 }
The documentation for this class was generated from the following file: