-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsphere.py
More file actions
28 lines (22 loc) · 974 Bytes
/
sphere.py
File metadata and controls
28 lines (22 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from math import sqrt
class Sphere:
"""Sphere is the only 3D shape implemented. Has center, radius and material"""
def __init__(self, center, radius, material):
self.center = center
self.radius = radius
self.material = material
def intersects(self, ray):
"""Checks if ray intersects this sphere. Returns distance to intersection or None if there is no intersection"""
sphere_to_ray = ray.origin - self.center
# a = 1
b = 2 * ray.direction.dot_product(sphere_to_ray)
c = sphere_to_ray.dot_product(sphere_to_ray) - self.radius * self.radius
discriminant = b * b - 4 * c
if discriminant >= 0:
dist = (-b - sqrt(discriminant)) / 2
if dist > 0:
return dist
return None
def normal(self, surface_point):
"""Returns surface normal to the point on sphere's surface"""
return (surface_point - self.center).normalize()