Tikz: パラメトリック曲線の端にある矢印は正しいですか?

Tikz: パラメトリック曲線の端にある矢印は正しいですか?
\documentclass[11pt]{amsart}
 \usepackage{tikz}
 \begin{document}
\begin{tikzpicture} [scale=4]
\draw[domain=0:0.4, smooth, variable=\t, samples=200, ->] plot({(1/sqrt(2)*(\t-\t^3)},
{(1/sqrt(2)*(\t+\t^3)});
\draw[domain=0:0.4, smooth, variable=\t, samples=200, ->] plot({\t}, {-\t^3});
\end{tikzpicture}
\end{document}

こんにちは。矢印はパラメトリック曲線の端でのみ上を向きます。これを修正する方法はありますか?

編集: スムーズ オプションを削除すると、問題は解決しました。明らかな理由から、これが必要だと思いました。ありがとう、Jesse!

答え1

広範囲にわたるテストにより、smoothオプションを削除すると問題が解決することが示されています。

ここに画像の説明を入力してください

コード

\documentclass[border=10pt]{standalone}%[11pt]{amsart}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture} [scale=4]
\draw[domain=0:0.4, smooth, variable=\t, samples=200, ->] plot({(1/sqrt(2)*(\t-\t^3)},
{(1/sqrt(2)*(\t+\t^3)});
\draw[domain=0:0.4, smooth, variable=\t, samples=200, ->] plot({\t}, {-\t^3});
\end{tikzpicture}
\begin{tikzpicture} [scale=4]
\draw[domain=0:0.4, variable=\t, samples=200, ->] plot({(1/sqrt(2)*(\t-\t^3)},
{(1/sqrt(2)*(\t+\t^3)});
\draw[domain=0:0.4, variable=\t, samples=200, ->] plot({\t}, {-\t^3});
\end{tikzpicture}
\end{document}

関連情報