28 Aug
2023
28 Aug
'23
1 a.m.
class Particle: def __init__(self, x=0, y=0, z=0, vx=0, vy=0, vz=0): self.x = x self.y = y self.z = z self.vx = vx self.vy = vy self.vz = vz class Display: def __init__(self, width, height, origin_x, origin_y, scale_x, scale_y): self.width = width self.height = height self.ox = origin_x self.oy = origin_y self.scale_x = scale_x self.scale_y = scale_y —- difficulties etc might practice hobby AI