Skip to content

Commit

Permalink
fix(intersection): Fix obvious typo in code
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey authored and Chris Mackey committed Jan 17, 2024
1 parent 81cf414 commit 218a338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ladybug_radiance/intersection.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OBJ2MESH_EXE = os.path.join(folders.radbin_path, 'obj2mesh.exe') if \
os.name == 'nt' else os.path.join(folders.radbin_path, 'obj2mesh')
else:
OCONV_EXE, RCONTRIB_EXE, OBJ2MESH_EXE = None, None
OCONV_EXE, RCONTRIB_EXE, OBJ2MESH_EXE = None, None, None
OCTREE_RES = 32768 # resolution of the octree to use
BLACK = 'void plastic black 0 0 5 0.0 0.0 0.0 0.0 0.0'

Expand Down

0 comments on commit 218a338

Please sign in to comment.