Class: BuildingSync::Fire
- Inherits:
-
Object
- Object
- BuildingSync::Fire
- Defined in:
- lib/BuildingSync.rb
Overview
http://www.gbxml.org/schemaFire
thickness - BuildingSync::Thickness
conductivity - BuildingSync::Conductivity
density - BuildingSync::Density
specificHeat - BuildingSync::SpecificHeat
Instance Attribute Summary collapse
-
#conductivity ⇒ Object
Returns the value of attribute conductivity.
-
#density ⇒ Object
Returns the value of attribute density.
-
#specificHeat ⇒ Object
Returns the value of attribute specificHeat.
-
#thickness ⇒ Object
Returns the value of attribute thickness.
Instance Method Summary collapse
-
#initialize(thickness = nil, conductivity = nil, density = nil, specificHeat = nil) ⇒ Fire
constructor
A new instance of Fire.
Constructor Details
#initialize(thickness = nil, conductivity = nil, density = nil, specificHeat = nil) ⇒ Fire
Returns a new instance of Fire.
27905 27906 27907 27908 27909 27910 |
# File 'lib/BuildingSync.rb', line 27905 def initialize(thickness = nil, conductivity = nil, density = nil, specificHeat = nil) @thickness = thickness @conductivity = conductivity @density = density @specificHeat = specificHeat end |
Instance Attribute Details
#conductivity ⇒ Object
Returns the value of attribute conductivity.
27901 27902 27903 |
# File 'lib/BuildingSync.rb', line 27901 def conductivity @conductivity end |
#density ⇒ Object
Returns the value of attribute density.
27902 27903 27904 |
# File 'lib/BuildingSync.rb', line 27902 def density @density end |
#specificHeat ⇒ Object
Returns the value of attribute specificHeat.
27903 27904 27905 |
# File 'lib/BuildingSync.rb', line 27903 def specificHeat @specificHeat end |
#thickness ⇒ Object
Returns the value of attribute thickness.
27900 27901 27902 |
# File 'lib/BuildingSync.rb', line 27900 def thickness @thickness end |