not been able to place the arc correctly. My code is as follows :
Code: Select all
\documentclass[x11names]{article}
%
\usepackage{tikz}
\begin{document}
\begin{center}
\begin{tikzpicture}[scale=1]
\draw[help lines,step=.5,gray] (-3,-3) grid (3,3) ;
\foreach \x in {-3,-2.5,...,3}
\draw (-3,\x) node[left]{\tiny\x} ;
\foreach \x in {-3,-2.5,...,3}
\draw (\x,3) node[above]{\tiny\x} ;
\coordinate (O) at (0,0) ;
\draw[thin,gray] (O) circle (3cm) ;
\draw[red,rotate=35,dashed] (O) ellipse (3 and 1) ;
\node at (-2.7,-2) {A} ;
\node at (2.7,2) {B} ;
\draw[blue,rotate=35] (35:3) arc (35:-155:3 and 1) ;
\end{tikzpicture}
\end{center}
\end{document}
Can someone point me to the correct way to do it?
Regards,
sridhar