Skip to content

Instantly share code, notes, and snippets.

View fisherdog1's full-sized avatar
💭
I hate two factor

fisherdog1

💭
I hate two factor
View GitHub Profile
# 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):