15 lines
253 B
Python
Executable File
15 lines
253 B
Python
Executable File
class OffsetMirror:
|
|
def __init__(self,Id,deflection='up',elog=None):
|
|
self.elog = elog
|
|
self.deflection = deflection
|
|
if deflection is 'up':
|
|
self.x
|
|
|
|
def out(self):
|
|
pass
|
|
|
|
def in(self):
|
|
pass
|
|
|
|
|