Loading...
Searching...
No Matches
Image.h
Go to the documentation of this file.
1// Emacs: This is -*- C++ -*-
2
4
7struct Image {
9 Image() {};
11 Image(int num, int nTrans)
12 : number(num),
13 nTranslation(nTrans) {}
14
16 int number;
17
20};
Image()
Dummy constructor needed by some STL containers.
Definition Image.h:9
Image(int num, int nTrans)
Construct an image of atom n translated by translation number nTrans.
Definition Image.h:11
int number
The number of the real atom.
Definition Image.h:16
int nTranslation
The number of the translation to apply to the real atom.
Definition Image.h:19