1 2 3 -class Intersection: 4 - def __init__(self, 5 dist, 6 pos, 7 uv, 8 normal): 9 self.dist=dist 10 self.pos=pos 11 self.uv=uv 12 self.normal=normal 13