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.



30774
30775
30776
30777
30778
# File 'lib/BuildingSync.rb', line 30774

def initialize(independentVariable = [], dependentVariable = [], data = [])
  @independentVariable = independentVariable
  @dependentVariable = dependentVariable
  @data = data
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



30772
30773
30774
# File 'lib/BuildingSync.rb', line 30772

def data
  @data
end

#dependentVariableObject

Returns the value of attribute dependentVariable.



30771
30772
30773
# File 'lib/BuildingSync.rb', line 30771

def dependentVariable
  @dependentVariable
end

#independentVariableObject

Returns the value of attribute independentVariable.



30770
30771
30772
# File 'lib/BuildingSync.rb', line 30770

def independentVariable
  @independentVariable
end