public void write(StorableOutput dw) {
   super.write(dw);
   dw.writeDouble(fRelativeX);
   dw.writeDouble(fRelativeY);
 }
Esempio n. 2
0
 /** Stores the arrow tip to a StorableOutput. */
 public void write(StorableOutput dw) {
   dw.writeDouble(getAngle());
   dw.writeDouble(getOuterRadius());
   dw.writeDouble(getInnerRadius());
   super.write(dw);
 }