Class: BuildingSync::PointData
- Inherits:
-
Object
- Object
- BuildingSync::PointData
- Defined in:
- lib/BuildingSync.rb
Overview
http://www.gbxml.org/schemaPointData
independentVariable - BuildingSync::IndependentVariable
dependentVariable - BuildingSync::DependentVariable
data - BuildingSync::C_Data
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#dependentVariable ⇒ Object
Returns the value of attribute dependentVariable.
-
#independentVariable ⇒ Object
Returns the value of attribute independentVariable.
Instance Method Summary collapse
-
#initialize(independentVariable = [], dependentVariable = [], data = []) ⇒ PointData
constructor
A new instance of PointData.
Constructor Details
#initialize(independentVariable = [], dependentVariable = [], data = []) ⇒ PointData
Returns a new instance of PointData.
31299 31300 31301 31302 31303 |
# File 'lib/BuildingSync.rb', line 31299 def initialize(independentVariable = [], dependentVariable = [], data = []) @independentVariable = independentVariable @dependentVariable = dependentVariable @data = data end |
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data.
31297 31298 31299 |
# File 'lib/BuildingSync.rb', line 31297 def data @data end |
#dependentVariable ⇒ Object
Returns the value of attribute dependentVariable.
31296 31297 31298 |
# File 'lib/BuildingSync.rb', line 31296 def dependentVariable @dependentVariable end |
#independentVariable ⇒ Object
Returns the value of attribute independentVariable.
31295 31296 31297 |
# File 'lib/BuildingSync.rb', line 31295 def independentVariable @independentVariable end |