Is it possible to use the X and Y values of a coordinate as stand alone variables? I did put together a MWE, but it does not work... I've seen similar questions, but none really had a clear answer for what I am asking here, or at least I could not extract any working wisdom out of those answers.
\documentclass{minimal}
\usepackage{pgfplots}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\coordinate (OR) at (0.00, 0.00);
\filldraw [red] (OR) circle(2pt);
\coordinate (PT) at ( $\x{OR} + 1.0$, $\y{OR} + 2.0$ );
\filldraw [blue] (PT) circle(2pt);
\end{tikzpicture}
\end{document}

