summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Seibert <stan@mtrr.org>2012-05-18 10:29:07 -0400
committertlatorre <tlatorre@uchicago.edu>2021-05-09 08:42:39 -0700
commit34649edf29a1cd63bcc49b91e0dcbd64ddabdc2e (patch)
tree93e6a1146b8a221aa935dd8c5c9cdc3ec4c7f5be
parent341892cf947e1a3c2faa39a6acb413817b838817 (diff)
downloadchroma-34649edf29a1cd63bcc49b91e0dcbd64ddabdc2e.tar.gz
chroma-34649edf29a1cd63bcc49b91e0dcbd64ddabdc2e.tar.bz2
chroma-34649edf29a1cd63bcc49b91e0dcbd64ddabdc2e.zip
Update photon history bits in Python to match C header.
-rw-r--r--chroma/event.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/chroma/event.py b/chroma/event.py
index 80e5b01..6e0686a 100644
--- a/chroma/event.py
+++ b/chroma/event.py
@@ -8,6 +8,9 @@ SURFACE_ABSORB = 0x1 << 3
RAYLEIGH_SCATTER = 0x1 << 4
REFLECT_DIFFUSE = 0x1 << 5
REFLECT_SPECULAR = 0x1 << 6
+SURFACE_REEMIT = 0x1 << 7
+SURFACE_TRANSMIT = 0x1 << 8
+BULK_REEMIT = 0x1 << 9
NAN_ABORT = 0x1 << 31
class Vertex(object):