While playing with some graphics progamming in OpenGL, I've encounterd this problem:
Find the Parametric representation for a square with side $1$ centered at the origin as a function of the angle $\theta$ measured from the positive $x$-axis.
Here's an image I created to illustrate the problem:
Here the vector $v$ must satisfy $||v||_2 = 1$ and the vector $u$ must satisfy $||u||_{\infty} = 1$
We can parameterize $v$ by using the angle $\theta$ measured from the positive $x$-axis as follows:
$v(\theta) = (sin(\theta), cos(\theta))$
Now how can we parameterize $u$ by using the angle $\theta$ measured from the positive $x$-axis?
Thanks for any help.

$$u(\theta)=\frac{v(\theta)}{\max\left(\left|\sin\theta\right|,\left|\cos\theta\right|\right)}=\frac{1}{\max\left(\left|\sin\theta\right|,\left|\cos\theta\right|\right)}\left(\cos\theta,\sin\theta\right).$$