i have a tikz question. Is it possible to use relative coordinates in a \coordinate definition? I have to define a lot of coordinates and it would be much easier if i could define those relative to already defined coordinates like this:
\coordinate (A) at (0.0, 0.0);
\coordinate (B) at (A)+(120:1);
As you can see, i want to especially use the angle:length notation here. But in general i want to define the coordinate B relative to A. Is this possible?

($(A) +(120:1)$)– daleif Aug 07 '16 at 13:45calclibrary:\coordinate (B) at ([shift={(120:1)}]A);. Be careful with syntax, as(120:1)uses parenthesis, it must be included into a pair of braces{ (120:1)}. – Ignasi Aug 08 '16 at 11:23++wouldn't work. I meant that+will not, in fact, put the B on top of the A. ;) – cfr Aug 08 '16 at 20:55