Class: Containers::KDTree::Node
- Inherits:
-
Struct
- Object
- Struct
- Containers::KDTree::Node
- Defined in:
- lib/containers/kd_tree.rb
Instance Attribute Summary collapse
-
#coords ⇒ Object
Returns the value of attribute coords.
-
#id ⇒ Object
Returns the value of attribute id.
-
#left ⇒ Object
Returns the value of attribute left.
-
#right ⇒ Object
Returns the value of attribute right.
Instance Attribute Details
#coords ⇒ Object
Returns the value of attribute coords
27 28 29 |
# File 'lib/containers/kd_tree.rb', line 27 def coords @coords end |
#id ⇒ Object
Returns the value of attribute id
27 28 29 |
# File 'lib/containers/kd_tree.rb', line 27 def id @id end |
#left ⇒ Object
Returns the value of attribute left
27 28 29 |
# File 'lib/containers/kd_tree.rb', line 27 def left @left end |
#right ⇒ Object
Returns the value of attribute right
27 28 29 |
# File 'lib/containers/kd_tree.rb', line 27 def right @right end |