abhshkdz / House3D

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Potential bug

danielgordon10 opened this issue · comments

tx1 = np.floor((x1 - self.L_lo) / self.L_det * n_row+tiny)

should this be changed to
tx1 = np.floor((x1 - self.L_lo) / (self.L_det * n_row + tiny))
As well as the other lines around it.

Seems to not be a bug, but could use better documentation on why +tiny is necessary