Fix rendering a bit.

This commit is contained in:
bʰedoh₂ swé 2024-04-05 01:00:08 +05:00
parent 181492cc68
commit 9121959b25

View File

@ -13,7 +13,7 @@ def cLineIntersection(cA0, cA1, cB0, cB1):
@jit @jit
def Between(rA,rB,rN): def Between(rA,rB,rN):
return (rA < rN and rN < rB) or (rB < rN and rN < rA) return (rA <= rN and rN <= rB) or (rB <= rN and rN <= rA)
@jit @jit
def cBetween(cA,cB,cN): def cBetween(cA,cB,cN):