The short answer is no since all the class attributes are floats not doubles.
The solution is to create a new class that does the same as PVector but using doubles. I did this by copying the source code for PVector then search and replace float with double, I had to modify the lerp and hashcode functions by hand but the result can be seem
hereTo use this class then create a new tab in your processing sketch called
PVectorD.java (this is case sensitive) and copy the code from the above link into this tab. Instead of using PVector use PVectorD instead it should work just fine.