Class: BuildingSync::PointData

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#dataObject

Returns the value of attribute data.



31297
31298
31299
# File 'lib/BuildingSync.rb', line 31297

def data
  @data
end

#dependentVariableObject

Returns the value of attribute dependentVariable.



31296
31297
31298
# File 'lib/BuildingSync.rb', line 31296

def dependentVariable
  @dependentVariable
end

#independentVariableObject

Returns the value of attribute independentVariable.



31295
31296
31297
# File 'lib/BuildingSync.rb', line 31295

def independentVariable
  @independentVariable
end