Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Whoopsie! Can't re-arrange equations it seems. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
1e61137082edd4afb79f51a500869893 |
| User & Date: | base@atomicules.co.uk 2013-08-27 11:37:44 |
Context
|
2013-08-27
| ||
| 12:00 | Fix order of arguements in exposure functions check-in: c663824d67 user: base@atomicules.co.uk tags: origin/master, trunk | |
| 11:37 | Whoopsie! Can't re-arrange equations it seems. check-in: 1e61137082 user: base@atomicules.co.uk tags: origin/master, trunk | |
|
2013-08-26
| ||
| 22:02 | More whitespace changes (mainly). What the hell?! check-in: a7ef007409 user: base@atomicules.co.uk tags: origin/master, trunk | |
Changes
Changes to exposurses.c.
| ︙ | ︙ | |||
324 325 326 327 328 329 330 |
double shutter (int aperture, int exposure) {
/* EV = log2 (N^2/t) */
return pow(aperture, 2) / pow(2, exposure);
}
double aperture (int shutter, int exposure) {
/* EV = log2 (N^2/t) */
| | | 324 325 326 327 328 329 330 331 332 |
double shutter (int aperture, int exposure) {
/* EV = log2 (N^2/t) */
return pow(aperture, 2) / pow(2, exposure);
}
double aperture (int shutter, int exposure) {
/* EV = log2 (N^2/t) */
return sqrt(pow(2, exposure) * shutter);
}
|