Skip to content

Commit

Permalink
Removed print statements from raycaster.
Browse files Browse the repository at this point in the history
  • Loading branch information
LyceanEM committed Oct 9, 2024
1 parent 2100d99 commit 06d3bcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lyceanem/raycasting/rayfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1841,9 +1841,9 @@ def charge_rays_environment1Dv2(sources, sinks, environment_points, point_indexi
ray payload to be sent to GPU
"""
print("sources shape", sources.shape)
print("sinks shape", sinks.shape)
print("environment_points shape", environment_points.shape)
#print("sources shape", sources.shape)
#print("sinks shape", sinks.shape)
#print("environment_points shape", environment_points.shape)

unified_model = np.append(
np.append(sources, sinks, axis=0), environment_points, axis=0
Expand Down

0 comments on commit 06d3bcd

Please sign in to comment.