File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -219,17 +219,18 @@ class TapData(
219
219
outputs : na .ScalarArray = dataclasses .MISSING
220
220
"""The underlying array storing the image data."""
221
221
222
- axis_x : str = dataclasses .MISSING
222
+ camera : AbstractCamera = dataclasses .MISSING
223
+ """A model of the camera used to capture these images."""
224
+
225
+ axis_x : str = dataclasses .field (default = "detector_x" , kw_only = True )
223
226
"""The name of the horizontal axis."""
224
227
225
- axis_y : str = dataclasses .MISSING
228
+ axis_y : str = dataclasses .field ( default = "detector_y" , kw_only = True )
226
229
"""The name of the vertical axis."""
227
230
228
- axis_tap_x : str = dataclasses .MISSING
231
+ axis_tap_x : str = dataclasses .field ( default = "tap_x" , kw_only = True )
229
232
"""The name of the horizontal tap axis."""
230
233
231
- axis_tap_y : str = dataclasses .MISSING
234
+ axis_tap_y : str = dataclasses .field ( default = "tap_y" , kw_only = True )
232
235
"""The name of the vertical tap axis."""
233
236
234
- camera : AbstractCamera = dataclasses .MISSING
235
- """A model of the camera used to capture these images."""
You can’t perform that action at this time.
0 commit comments