I want to attach a weight vector pointing downward to body of the truck. When I move the truck, the weight vector must also be automatically moved.
I don't know how to attach it because \pstVehicle does not provide us with such an interface. How to attach any object (in this case, a vector) to the truck?
MWE
\documentclass[border=12pt,pstricks]{standalone}
\usepackage{pst-vehicle}
\psset{unit=4cm}
\begin{document}
\begin{pspicture}(4,3)
\def\FuncA{0.5*cos(x)+1}
\psplot{0}{4}{\FuncA}
\psVehicle[vehicle=\Truck,showSlope=false]{0.2}{.7}{\FuncA}
\end{pspicture}
\end{document}

