//Constructor copia public FlightPlan(FlightPlan fp) { this.ID = fp.GetID(); this.compañia = fp.GetCompañia(); this.velocidad = fp.GetVelocidad(); this.IX = fp.GetIX(); this.FX = fp.GetFX(); this.AX = fp.GetAX(); this.IY = fp.GetIY(); this.FY = fp.GetFY(); this.AY = fp.GetAY(); this.incrementov = fp.GetIncrementoV(); }