Hello all, my issue is in calling the attributes of a 3d vector class in python, this is the class I was working with:
import math
class Vec3:
''' A three dimensional vector '''
def __init__(self, v_x=0, v_y=0, v_z=0):
self.set( v_x, v_y, v_z )
def set(self, v_x=0...