| 405 | } |
| 406 | |
| 407 | void DotGrid::CopyDot(DotPosition from, DotPosition to) |
| 408 | { |
| 409 | if (IsValidPosition(from) && IsValidPosition(to)) |
| 410 | mData[GetDataIndex(to.mCol, to.mRow)] = mData[GetDataIndex(from.mCol, from.mRow)]; |
| 411 | } |
| 412 | |
| 413 | void DotGrid::SetHighlightCol(double time, int col) |
| 414 | { |