From 34649edf29a1cd63bcc49b91e0dcbd64ddabdc2e Mon Sep 17 00:00:00 2001 From: Stan Seibert Date: Fri, 18 May 2012 10:29:07 -0400 Subject: Update photon history bits in Python to match C header. --- chroma/event.py | 3 +++ 1 file changed, 3 insertions(+) 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): -- cgit