Desdeesta preguntaTal vez esté sobrecargado y contenga demasiados detalles innecesarios, traté de reformularlo en una forma más condensada y completa.
El problema es que quiero acceder a las coordenadas del gráfico del carcaj (x,y,u,v) en un código propio, en quiver/after arrow/.code
o alternativamente en quiver/before arrow/.code
. El siguiente ejemplo no tiene mucho sentido, ya que fácilmente se podrían cambiar los valores u y v. Sin embargo, el problema es exactamente el mismo que en mi otra pregunta.
En el código he añadido un comentario donde intento acceder a las coordenadas y donde se comentan diferentes posibilidades que no funcionan.
\documentclass[]{standalone}
\usepackage{tikz,pgfplots}
\usetikzlibrary{calc} \pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis equal image,enlargelimits=false,clip=false]
% Reference plot
\addplot[
quiver={
u=x,v=y,
},
->,
samples=5,domain=0:1
] {x*x};
% own plot
\addplot[
quiver={
u=x,v=y,
% draw some other (e.g. orthogonal) arrows here!
after arrow/.code={
\draw[blue,dashed,->] (0.5,0.25) -- ($ (0.5,0.25) + (0.25,-0.5)$);
\draw[blue,dashed,->] (1,1) -- ($ (1,1) + (1,-1)$);
%
%
% Things which are not working
%
%
%\draw[blue,dashed,->] (x,y) -- ($ (x,y) + (v,-u)$);
%\draw[blue,dashed,->] (\x,\y) -- ($ (\x,\y) + (\v,-\u)$);
%\draw[blue,dashed,->] (\pgfplots@current@point@x,\pgfplots@current@point@y) -- ($ (\pgfplots@current@point@x,\pgfplots@current@point@y) + (\pgfplots@quiver@v,-\pgfplots@quiver@u)$);
};
},
draw=none,
samples=5,domain=0:1
] {x*x};
\end{axis}
\end{tikzpicture}
\end{document}
Respuesta1
Actualmente el diseño de quiver
es muy inflexible. En el momento en que se dibujan las flechas, las coordenadas (x,y) se almacenan en \pgf@x
y \pgf@y
las coordenadas (u,v) se traducen a coordenadas absolutas. No tienes muchas opciones.
Quizás puedas trazar la misma función dos veces con diferentes quiver
.
\documentclass[border=9,tikz]{standalone}
\usepackage{pgfplots}\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis equal]
% Reference plot
\addplot[
quiver={u=x,v=y},
->,
samples=10,domain=0:1
] {x*x};
% own plot
\addplot[
quiver={u=y,v=-x},
->,blue,
samples=10,domain=0:1
] {x*x};
\end{axis}
\end{tikzpicture}
\end{document}
Una forma frágil de acceder a las coordenadas relativas de (u,v)
\documentclass[border=9,tikz]{standalone}
\usepackage{pgfplots}\pgfplotsset{compat=newest}
\begin{document}
\makeatletter
\def\pgfplotsplothandlerquiver@vis@path#1{%
% remember (x,y) in a robust way
#1%
\pgfmathsetmacro\pgfplots@quiver@x{\pgf@x}%
\pgfmathsetmacro\pgfplots@quiver@y{\pgf@y}%
% calculate (u,v) in relative coordinate
\pgfplotsaxisvisphasetransformcoordinate\pgfplots@quiver@u\pgfplots@quiver@v\pgfplots@quiver@w%
\pgfplotsqpointxy{\pgfplots@quiver@u}{\pgfplots@quiver@v}%
\pgfmathsetmacro\pgfplots@quiver@u{\pgf@x-\pgfplots@quiver@x}%
\pgfmathsetmacro\pgfplots@quiver@v{\pgf@y-\pgfplots@quiver@y}%
% move to (x,y) and start drawing
{%
\pgftransformshift{\pgfpoint{\pgfplots@quiver@x}{\pgfplots@quiver@y}}%
\pgfpathmoveto{\pgfpointorigin}%
\pgfpathlineto{\pgfpoint\pgfplots@quiver@u\pgfplots@quiver@v}%
}%
}%
\begin{tikzpicture}
\begin{axis}[axis equal]
\addplot[
quiver={u=x,v=y,
after arrow/.code={
\relax{% always protect the shift
\pgftransformshift{\pgfpoint{\pgfplots@quiver@x}{\pgfplots@quiver@y}}%
\node[below right]{\tiny$(u,v)=(\pgfplots@quiver@u,\pgfplots@quiver@v)$};
}
}
},
->,
samples=10,domain=-1:1
] {x*x};
\end{axis}
\end{tikzpicture}
\end{document}
Descargo de responsabilidad
Actualmente before arrow
y after arrow
no se utiliza en ninguna otra parte del paquete. El hecho de que (u,v) esté en coordenadas absolutas podría cambiarse en el futuro.