Class: Naiso::SplitResult
- Inherits:
-
Object
- Object
- Naiso::SplitResult
- Defined in:
- lib/naiso/split_result.rb
Overview
분할 결과
Instance Attribute Summary collapse
-
#background_transitions ⇒ Object
Returns the value of attribute background_transitions.
-
#complexity_splits ⇒ Object
Returns the value of attribute complexity_splits.
-
#divider_lines ⇒ Object
Returns the value of attribute divider_lines.
-
#output_files ⇒ Object
Returns the value of attribute output_files.
-
#split_points ⇒ Object
Returns the value of attribute split_points.
-
#uniform_regions ⇒ Object
Returns the value of attribute uniform_regions.
Instance Method Summary collapse
-
#initialize ⇒ SplitResult
constructor
A new instance of SplitResult.
Constructor Details
#initialize ⇒ SplitResult
Returns a new instance of SplitResult.
9 10 11 12 13 14 15 16 |
# File 'lib/naiso/split_result.rb', line 9 def initialize @output_files = [] @split_points = [] @uniform_regions = [] @divider_lines = [] @background_transitions = [] @complexity_splits = [] end |
Instance Attribute Details
#background_transitions ⇒ Object
Returns the value of attribute background_transitions.
6 7 8 |
# File 'lib/naiso/split_result.rb', line 6 def background_transitions @background_transitions end |
#complexity_splits ⇒ Object
Returns the value of attribute complexity_splits.
6 7 8 |
# File 'lib/naiso/split_result.rb', line 6 def complexity_splits @complexity_splits end |
#divider_lines ⇒ Object
Returns the value of attribute divider_lines.
6 7 8 |
# File 'lib/naiso/split_result.rb', line 6 def divider_lines @divider_lines end |
#output_files ⇒ Object
Returns the value of attribute output_files.
6 7 8 |
# File 'lib/naiso/split_result.rb', line 6 def output_files @output_files end |
#split_points ⇒ Object
Returns the value of attribute split_points.
6 7 8 |
# File 'lib/naiso/split_result.rb', line 6 def split_points @split_points end |
#uniform_regions ⇒ Object
Returns the value of attribute uniform_regions.
6 7 8 |
# File 'lib/naiso/split_result.rb', line 6 def uniform_regions @uniform_regions end |