Class: Bagel::Tennis::Stats::BreakPointsWon
- Inherits:
-
Stat
- Object
- Stat
- Bagel::Tennis::Stats::BreakPointsWon
show all
- Defined in:
- lib/bagel/tennis/stats/break_points_won.rb
Instance Method Summary
collapse
Methods inherited from Stat
#initialize
Instance Method Details
#name ⇒ Object
5
6
7
|
# File 'lib/bagel/tennis/stats/break_points_won.rb', line 5
def name
'BREAK POINTS WON'
end
|
#superior ⇒ Object
13
14
15
|
# File 'lib/bagel/tennis/stats/break_points_won.rb', line 13
def superior
[ p1_percentage > p2_percentage, p2_percentage > p1_percentage ]
end
|
#values ⇒ Object
9
10
11
|
# File 'lib/bagel/tennis/stats/break_points_won.rb', line 9
def values
[ p1_label, p2_label ]
end
|