Unverified Commit 5cea4feb authored by Ruilong Li(李瑞龙)'s avatar Ruilong Li(李瑞龙) Committed by GitHub
Browse files

Fix inplace prefix_trans

parent 32273f83
...@@ -212,7 +212,7 @@ def render_transmittance_from_alpha( ...@@ -212,7 +212,7 @@ def render_transmittance_from_alpha(
1 - alphas, packed_info=packed_info, indices=ray_indices 1 - alphas, packed_info=packed_info, indices=ray_indices
) )
if prefix_trans is not None: if prefix_trans is not None:
trans *= prefix_trans trans = trans * prefix_trans
return trans return trans
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment