public static Matriz RepresentacionMatricial(Punto2D Punto) { Matriz Retorno = new Matriz(3, 1); Retorno.EstablecerValoresPorColumna(0, Punto.X, Punto.Y, 1); return Retorno; }