diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-02-17 10:38:57 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2010-02-17 10:38:57 +0100 |
commit | 8ef8fa59cbd8afac2375c5dbb1acc524ac322fbc (patch) | |
tree | 100537dfe02d64ce1b2d59f3c95485bd8b5e2146 /src/detector.h | |
parent | 858aee656ef46d89bd26095bb88b28574cfe7212 (diff) |
WIP on per-panel detector geometry
Diffstat (limited to 'src/detector.h')
-rw-r--r-- | src/detector.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/detector.h b/src/detector.h index 30c2f44c..4a983313 100644 --- a/src/detector.h +++ b/src/detector.h @@ -26,8 +26,10 @@ struct panel int max_x; /* Largest x value considered to be in this panel */ int min_y; /* ... and so on */ int max_y; - float cx; /* Location of centre */ + float cx; /* Location of centre */ float cy; + float clen; /* Camera length */ + float res; /* Resolution */ }; struct detector |