/**
  * Writes the <code>viewFrom</code> property. The <code>viewFrom</code> property specifies a
  * suggested camera location when viewing this object. The property is specified as a Cartesian
  * position in the East (x), North (y), Up (z) reference frame relative to the objects position
  * property.
  *
  * @param dates The dates at which the vector is specified.
  * @param values The values corresponding to each date.
  */
 public final void writeViewFrom(List<JulianDate> dates, List<Cartesian> values) {
   writeViewFrom(dates, values, 0, dates.size());
 }