Another Minimal Non-Working Example...
\documentclass{article}
\usepackage{tikz}
\begin{document}
\newlength\mylength
\setlength\mylength{20pt}
\newcommand*\mypoint{\mylength,20pt}
\begin{tikzpicture}
\draw (0pt,0pt) to [in=down] (\mypoint);
\end{tikzpicture}
\end{document}
Everything is fine without the [in=down] modifier. Assistance welcome! I need a fix that retains the general structure; this is a simplification of a real situation in which I have hundreds of these to [in=down] (\mypoint) line segments in my draw command, where \mypoint is a different macro in each case, and it's not feasible to create a new node for every call of the macro.
[in=down]parameter was invoked, though? – Jamie Vicary Nov 06 '11 at 23:18curvetohandler which replaces thelinetohandler if you use something likein=downorbend righthandles its coordinates differently. – Jake Nov 06 '11 at 23:23