package rk2; public class Estado { double t; double x; double y; public Estado(double t, double x, double y) { this.t=t; this.x=x; this.y=y; } }