IMO the singular-value decomposition is a much better way to visualize the geometrical behavior of a matrix, than the eigenvalue decomposition.
The decomposition for a matrix $M∈ℝ^{m×n}$ is given by:
$$M=UΣV^\top$$
with $U∈ℝ^{m×m}$ orthogonal, $V∈ℝ^{n×n}$ orthogonal and $$Σ=\left(\begin{array}{ccc|ccc}ο_1 & && & \vdots & \\
&\ddots &&\cdots& 0 & \cdots\\
&&σ_r & & \vdots & \\ \hline
& \vdots & & & \vdots & \\
\cdots& 0 & \cdots & \cdots& 0 & \cdots\\
& \vdots & & & \vdots & \\
\end{array}\right)∈ℝ^{m×n}$$
With this decomposition the mapping $$\tilde{M}:ℝ^n→R^m\\x↦Mx$$
can be seen as the composition of three mappings $\tilde{M}=\tilde{U}\tilde{Σ}\tilde{V^\top}$, with
$$\tilde{V^\top}:ℝ^n→R^n\\x↦V^{\top}x$$
$$\tilde{Σ}:ℝ^n→R^m\\x↦Σx$$
$$\tilde{U}:ℝ^m→R^m\\x↦Ux$$
The mappings $V^\top$ and $U$ define coordinate transformations in $ℝ^n$ / $ℝ^m$, and $Σ$ is a scaling, as it is diagonal.
You can see that in the following picture, that illustrates the transformation of the unit disc. The arrows represent basis vectors.

Source
For your matrix it is
$$A=\begin{pmatrix}
-0.4046 &-0.9145 \\
-0.9145 & 0.4046
\end{pmatrix}
\begin{pmatrix} 5.4650 \\ &0.3660\end{pmatrix}
\begin{pmatrix}
-0.5760 & -0.8174 \\
0.8174 &-0.5760
\end{pmatrix}$$