\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[
every label/.append style = {font = \scriptsize},
dot/.style = {inner sep = +0pt, shape = circle,
draw = black, label = {#1}},
small dot/.style = {minimum size = .05cm, dot = {#1}},
big dot/.style = {minimum size = .1cm, dot = {#1}},
]
\node[fill = black, big dot = {below left: \(F\)}] (F) at (2, 0) {};
\node[fill = black, big dot = {above left: \(A\)}] (A) at (2, 0) -- ++({2 * cos(45)}, {3 * sin(45)}) {};
\end{tikzpicture}
\end{document}
I want my node to be 45 degrees from the point (2, 0) and not the origin. How can I do this?
With Jakes comment, the node is placed correctly but the dot isn't the correct size.
\path (2, 0) -- ++({2 * cos(45)}, {3 * sin(45)})
node[fill = black, big dot = {above right: \(A\)}] (A) {x};

By removing the {x} as suggested by Qrrbrbirlbel, Jakes comment worked perfectly.
\path (2, 0) -- ++({2 * cos(45)}, {3 * sin(45)})
node[fill = black, big dot = {above right: \(A\)}] (A) {};

{x}? I only ask because that is what I used but Jake deleted his comments and didn't pose a solution. – dustin Jul 06 '13 at 18:40