this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Increase circle radius

+2 -2
+2 -2
avatar_cube.py
··· 9 9 # ─────────────────────────── configuration ─────────────────────────────── 10 10 START_DATETIME = dt.datetime(2025, 4, 21, 0, 0, 0, tzinfo=dt.timezone.utc) 11 11 ZOOM = 100.0 12 - CIRCLE_R = 17 12 + CIRCLE_R = 23 13 13 LINE_W = 6 14 14 15 15 def rot_xyz(roll: float, pitch: float, yaw: float) -> np.ndarray: ··· 129 129 130 130 def sweep_through_images(): 131 131 INCREMENT = dt.timedelta(minutes=15) 132 - timestamps = [START_DATETIME + i * INCREMENT for i in range(104)] 132 + timestamps = [START_DATETIME + i * INCREMENT for i in range(180)] 133 133 for ts in timestamps: 134 134 update_bluesky_avatar(now_utc=ts, dry_run=True) 135 135