------------------------------------------------------------------------------
| 182 | |
| 183 | //------------------------------------------------------------------------------ |
| 184 | void vtkMolecule::SetAtomPosition(vtkIdType id, const vtkVector3f& pos) |
| 185 | { |
| 186 | assert(id >= 0 && id < this->GetNumberOfAtoms()); |
| 187 | this->Points->SetPoint(id, pos.GetData()); |
| 188 | this->Modified(); |
| 189 | } |
| 190 | |
| 191 | //------------------------------------------------------------------------------ |
| 192 | void vtkMolecule::SetAtomPosition(vtkIdType id, double x, double y, double z) |
no test coverage detected