Class: BuildingSync::Dimensions

Inherits:
Object
  • Object
show all
Defined in:
lib/BuildingSync.rb

Overview

http://www.gbxml.org/schemaDimensions

height - BuildingSync::Height
width - BuildingSync::Width
length - BuildingSync::Length

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(height = [], width = [], length = []) ⇒ Dimensions

Returns a new instance of Dimensions.



26813
26814
26815
26816
26817
# File 'lib/BuildingSync.rb', line 26813

def initialize(height = [], width = [], length = [])
  @height = height
  @width = width
  @length = length
end

Instance Attribute Details

#heightObject

Returns the value of attribute height.



26809
26810
26811
# File 'lib/BuildingSync.rb', line 26809

def height
  @height
end

#lengthObject

Returns the value of attribute length.



26811
26812
26813
# File 'lib/BuildingSync.rb', line 26811

def length
  @length
end

#widthObject

Returns the value of attribute width.



26810
26811
26812
# File 'lib/BuildingSync.rb', line 26810

def width
  @width
end