hermespy-rt

Minimalistic signal processing ray-tracer in C
git clone https://git.ea.contact/hermespy-rt
Log | Files | Refs

commit d60ec29215f9830370268f13416b86804c68a5ca
parent f127614a581359c9620e7a3c78188f339ad2cf0e
Author: Egor Achkasov <eaachkasov@edu.hse.ru>
Date:   Wed,  2 Apr 2025 23:38:57 +0200

Minor changes

Diffstat:
M.gitignore | 1+
Msrc/compute_paths.c | 3---
2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,6 +1,7 @@ *.elf *.hrt scenes +env .vscode build dist diff --git a/src/compute_paths.c b/src/compute_paths.c @@ -662,9 +662,6 @@ void compute_paths( Vec3 d_rd = vec3_sub(&r->d, &rays[off_tx_path].d); chanInfo_scat->freq_shift[off_tx_path] += vec3_dot(&d_rd, mesh_vel) * doppler_shift_multiplier; - /* Save the reflected ray */ - rays[off_tx_path] = *r; - /***********************************************************************/ /* Scatter the rays */ /***********************************************************************/