summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chroma/event.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/chroma/event.py b/chroma/event.py
index e65c543..80e5b01 100644
--- a/chroma/event.py
+++ b/chroma/event.py
@@ -1,13 +1,13 @@
import numpy as np
# Photon history bits (see photon.h for source)
-NO_HIT = 0x1 << 0,
-BULK_ABSORB = 0x1 << 1,
-SURFACE_DETECT = 0x1 << 2,
-SURFACE_ABSORB = 0x1 << 3,
-RAYLEIGH_SCATTER = 0x1 << 4,
-REFLECT_DIFFUSE = 0x1 << 5,
-REFLECT_SPECULAR = 0x1 << 6,
+NO_HIT = 0x1 << 0
+BULK_ABSORB = 0x1 << 1
+SURFACE_DETECT = 0x1 << 2
+SURFACE_ABSORB = 0x1 << 3
+RAYLEIGH_SCATTER = 0x1 << 4
+REFLECT_DIFFUSE = 0x1 << 5
+REFLECT_SPECULAR = 0x1 << 6
NAN_ABORT = 0x1 << 31
class Vertex(object):