Desdeessa questãotalvez esteja sobrecarregado e contenha muitos detalhes desnecessários, tentei reformulá-lo de uma forma mais condensada e abrangente.
O problema é que eu quero acessar as coordenadas do gráfico quiver (x,y,u,v) em um próprio trecho de código, in quiver/after arrow/.code
, ou alternativamente in quiver/before arrow/.code
. O exemplo a seguir não faz sentido completamente, já que alguém poderia facilmente alterar os valores u e v. No entanto, o problema é exatamente o mesmo da minha outra pergunta.
No código, adicionei um comentário onde tento acessar as coordenadas e onde são comentadas diferentes possibilidades de não funcionamento.
\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}
Responder1
Atualmente o design quiver
é muito inflexível. No momento em que as setas são desenhadas, as coordenadas (x,y) são armazenadas em \pgf@x
e \pgf@y
e as coordenadas (u,v) são traduzidas para coordenadas absolutas. Você não tem muita escolha.
Talvez você possa traçar a mesma função duas vezes com 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}
Uma maneira frágil de acessar a coordenada relativa 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}
Isenção de responsabilidade
Atualmente before arrow
e after arrow
não é usado em nenhuma outra parte do pacote. O fato de (u,v) estar em coordenadas absolutas pode ser alterado no futuro.