Class: ImageCoordinate
- Inherits:
-
Object
- Object
- ImageCoordinate
- Defined in:
- lib/rimageanalysistools/image_shortcuts.rb
Constant Summary collapse
- Lookups =
{x: X, y: Y, z: Z, c: C, t: T}
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
permalink .[](*values) ⇒ Object
[View source]
61 62 63 64 65 |
# File 'lib/rimageanalysistools/image_shortcuts.rb', line 61 def self.[](*values) createCoordXYZCT(*values) end |
Instance Method Details
permalink #[](dim) ⇒ Object
[View source]
53 54 55 |
# File 'lib/rimageanalysistools/image_shortcuts.rb', line 53 def [](dim) get(Lookups[dim]) end |
permalink #[]=(dim, value) ⇒ Object
[View source]
57 58 59 |
# File 'lib/rimageanalysistools/image_shortcuts.rb', line 57 def []=(dim, value) set(Lookups[dim], value) end |