------------------------------------------------------------------------------ Set the data component at the ith tuple and jth component location. Note that i<NumberOfTuples and j<NumberOfComponents. Make sure enough memory has been allocated (use SetNumberOfTuples() and SetNumberOfComponents()).
| 705 | // memory has been allocated (use SetNumberOfTuples() and |
| 706 | // SetNumberOfComponents()). |
| 707 | void vtkBitArray::SetComponent(vtkIdType i, int j, double c) |
| 708 | { |
| 709 | this->SetValue(i * this->NumberOfComponents + j, static_cast<int>(c)); |
| 710 | this->DataChanged(); |
| 711 | } |
| 712 | |
| 713 | //------------------------------------------------------------------------------ |
| 714 | void vtkBitArray::RemoveTuple(vtkIdType id) |