Source code for meshslice.utils.cart2pol

import numpy as np


[docs]def cart2pol(x, y): rho = np.sqrt(x**2 + y**2) phi = np.arctan2(y, x) return(rho, phi)