1

Hi I am trying to create a planar tikzfigure, but would like to tilt the plane. Most advice I could find gives a perspective that has the viewpoint in infinite distance.

\documentclass[final]{beamer}

\usepackage{color}
\usepackage{tikz}
\usetikzlibrary{3d}

\begin{document}
\begin{frame}
\begin{figure}
    \begin{tikzpicture}[scale=1,x={(-0.2cm,-0.4cm)}, y={(1cm,0cm)}, z={(0cm,1cm)}]
        \draw(0,0)[color=magenta] circle (1);
        \draw(-2,-2)[color=blue] circle (0.6);
        \draw(1.5,-1.8)[color=red] circle (0.75);
        \draw(-1.8,2.5)[color=green] circle (0.6);
        \draw(1.5,2)[color=orange] circle (0.75);
    \end{tikzpicture}
\end{figure}
\end{frame}
\end{document}

How could I make this more "star wars text" like with things closer appearing larger.

Alenanno
  • 37,338

1 Answers1

0

Here is GIMP's perspective transformation of a page (see Size and position of boxes in title page)

demo

John Kormylo
  • 79,712
  • 3
  • 50
  • 120