------------------------------------------------------------------------------
| 694 | |
| 695 | //------------------------------------------------------------------------------ |
| 696 | void vtkBitArray::InsertComponent(vtkIdType i, int j, double c) |
| 697 | { |
| 698 | this->InsertValue(i * this->NumberOfComponents + j, static_cast<int>(c)); |
| 699 | this->DataChanged(); |
| 700 | } |
| 701 | |
| 702 | //------------------------------------------------------------------------------ |
| 703 | // Set the data component at the ith tuple and jth component location. |