I'd like to know the semi-projection of a tilted ellipse on $x$ and $y$ axes, called as $O_\parallel$ and $O_\perp$, knowing the vectors $\vec{\zeta}=(\zeta_x,\zeta_y)$ and $\vec{ \nu}=(\nu_x,\nu_y)$ and that, as obvious $\hat{x}=(1,0) , \hat{y}=(0,1)$.
I know that's fairly easy in 2D by looking at the parametric equation and by imposing some condition on the derivative but, because I need a feasible method that works in many dimension, i'd like to find a direct expression from the vector components.
This problem has a nice solution. There's probably a simpler way than what I did below, but I took an optimization approach.
Suppose we are given $n$ orthogonal vectors $w_1,\dots,w_n$ in $\mathbb{R}^n$, which define the axes of an ellipse. Then the ellipse is given by $$ E=\{x\in\mathbb{R}^n\ |\ x^\text{T}Ax\leq1\}, $$ where the matrix $A$ is given by $A=VDV^\text{T}$, where the $i^\text{th}$ column of $V$ is $w_i\big/\|w_i\|$, and $D$ is diagonal, with $d_{ii}=1\big/\|w_i\|^2$. So what you would like to do, is for each coordinate $i=1,\dots,n$, solve the convex optimization problem $$ \begin{array}{rl} \max\ & x_i \\ \text{s.t.}\ & x^\text{T}Ax\leq1 \end{array} $$ Using the KKT conditions (I'm omitting the details), we can then derive the optimal solution to this optimization problem for any coordinate $i$. The solution for direction $i$ is $$ z^*=\sqrt{V_i^\text{T}D^{-1}V_i^{}}, $$ where $V_i$ is the $i^\text{th}$ row of $V$. This can be simplified even further. Let $W$ denote the matrix with $w_i$ as its columns, and let $W_i$ denote the $i^\text{th}$ row of $W$. Then the optimal solution is $$ z^*=\|W_i\|_2. $$
Here's a picture computed using this method with $w_1=(3,\ 2)$ and $w_2=(-1,\ 3/2)$.