I fail to adopt an answer to absolute position a path on a beamer frame. The path in my actual code project is generated in an external software and very complex - I cannot change the coordinates.
\documentclass{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}
% Taken from https://tex.stackexchange.com/questions/348392/
\begin{tikzpicture}[remember picture,overlay]
\useasboundingbox (current page.north west) rectangle (current page.south east);
% Position the center of the following drawing at (.5\paperwidth,.5\paperheight)
\path[
draw = blue,
line width = 2pt
] (0,0) -- (1,2) -- (2,2) -- cycle;
\end{tikzpicture}
% Indicate the actual center
\begin{tikzpicture}[remember picture,overlay]
\node at (current page.center) {Center};
\end{tikzpicture}
\end{frame}
\end{document}


