from operation_vector import *

class Ray:
    def __init__(self, starting_point, direction):
        self.starting_point = Vector(starting_point)
        self.direction = Vector(direction)