I am looking for an easy way to draw an arc that goes e.g. from 45 deg to 90 deg and with 0,0 as center. The arc should start then at (0.707,0.707) and end at (0,1). The common syntax
\draw (0,0) arc [radius=1, start angle=45, end angle= 90];
always starts the arc at (in this case) (0,0) which makes it hard to draw several arcs with the same center but starting from different angles. Or is there something I am missing?

\draw (45:1) arc[radius=1, start angle=45, end angle= 90];– Gonzalo Medina Oct 17 '15 at 16:44