| 124 | */ |
| 125 | void SetPieceColor(int i, double r, double g, double b); |
| 126 | void SetPieceColor(int i, const double color[3]) |
| 127 | { |
| 128 | this->SetPieceColor(i, color[0], color[1], color[2]); |
| 129 | } |
| 130 | double* GetPieceColor(int i); |
| 131 | ///@} |
| 132 |
nothing calls this directly
no test coverage detected