This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Lineweld.py | |
from matplotlib import pyplot | |
from random import random | |
import math | |
# Stuff | |
def Dot(x1, y1, x2, y2): | |
return x1 * x2 + y1 * y2 | |
def Mag(x1, y1): |