Meeting Minutes - 2022-02-14
Present: John, Jane, Bob, and Bob's lawyer
Topic: The Great Sock Conspiracy
			python
# The Sock Conspiracy
import random
import math

class Sock:
	def __init__(self, color, size):
		self.color = color
		self.size = size

def plot_conspiracy(socks):
	# plot the socks in a circle
	# using a random number generator
	# and some basic trigonometry
	for i in range(100):
		theta = random.uniform(0, math.pi * 2)
		x = 200 + math.cos(theta) * 100
		y = 200 + math.sin(theta) * 100
		plot_point(x, y)

def plot_point(x, y):
	# plot a point at position (x, y)
	# using the canvas API
	canvas = Canvas(width=400, height=400)
	canvas.create_text(x, y, text="S", fill="red", font=("Arial", 20))
	canvas.draw_line(0, 0, 0, 0)
			
		
Example usage:
			plot_conspiracy([Sock("red", "medium"), Sock("blue", "large")])