()
| 4547 | } |
| 4548 | |
| 4549 | func (td *TableData) CompletionLevel() float32 { |
| 4550 | |
| 4551 | if td.ValueDisplayMode != ValueDisplayModeCheck { |
| 4552 | return 0 |
| 4553 | } |
| 4554 | |
| 4555 | completion := float32(0) |
| 4556 | |
| 4557 | for y := 0; y < td.Height; y++ { |
| 4558 | for x := 0; x < td.Width; x++ { |
| 4559 | if td.Data[y][x].Value == 1 { |
| 4560 | completion++ |
| 4561 | } |
| 4562 | } |
| 4563 | |
| 4564 | } |
| 4565 | |
| 4566 | return completion |
| 4567 | |
| 4568 | } |
| 4569 | |
| 4570 | func (td *TableData) MaximumCompletionLevel() float32 { |
| 4571 |
no outgoing calls
no test coverage detected