Steps:
Using some linear algebra:
import numpy as npx = np.tile([1,2,3,4],8)y = np.repeat([1,2,3,4,5,6,7,8],4)A = np.vstack((x,y)) # just a quick example# Rotation matrix as in e.g. https://en.wikipedia.org/wiki/Rotation_matrixtheta = -np.pi / 4rotate = np.array([[np.cos(theta), -np.sin(theta)],[np.sin(theta), np.cos(theta)]])# Translation vector is the mean of all xs and ys. translate = A.mean(axis=1, keepdims=True)
Apply transformations:
out = A - translate # Step 1out = rotate @ out # Step 2out = out + translate # Step 3