I am working on a presentation where I want to show the duct layout of a ventilation system. The plan was to draw the ventilation system with a TikZ picture. For easier drawing I wanted to give the coordinates in mm and then scale the
tikzpicture
itself.
Code: Select all
\documentclass{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}
\begin{minipage}{\textwidth}
\centering
\begin{tikzpicture}[scale=0.002]
\draw (-500,350) rectangle (500,-350);
\draw (500,250) rectangle (600,50);
\end{tikzpicture}
\end{minipage}
\end{frame}
\end{document}
Regards
Thomas