| 163 | void SetAtomPosition(vtkIdType atomId, const vtkVector3f& pos); |
| 164 | void SetAtomPosition(vtkIdType atomId, double x, double y, double z); |
| 165 | void SetAtomPosition(vtkIdType atomId, double pos[3]) |
| 166 | { |
| 167 | this->SetAtomPosition(atomId, pos[0], pos[1], pos[2]); |
| 168 | } |
| 169 | ///@} |
| 170 | |
| 171 | ///@{ |
nothing calls this directly
no test coverage detected