Class: Blender3d::Field
- Inherits:
-
Object
- Object
- Blender3d::Field
- Defined in:
- lib/blender-3d/field.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type, name) ⇒ Field
constructor
A new instance of Field.
- #inspect ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(type, name) ⇒ Field
Returns a new instance of Field.
5 6 7 |
# File 'lib/blender-3d/field.rb', line 5 def initialize(type, name) @type, @name = type, name.to_sym end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
3 4 5 |
# File 'lib/blender-3d/field.rb', line 3 def name @name end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
3 4 5 |
# File 'lib/blender-3d/field.rb', line 3 def type @type end |
Instance Method Details
#inspect ⇒ Object
13 14 15 |
# File 'lib/blender-3d/field.rb', line 13 def inspect "#{@type.inspect} #@name" end |
#to_s ⇒ Object
9 10 11 |
# File 'lib/blender-3d/field.rb', line 9 def to_s "Field[#@name](#@type)" end |