Exemplo n.º 1
0
		public static Matriz RepresentacionMatricial(Punto2D Punto)
		{
			Matriz Retorno = new Matriz(3, 1);

			Retorno.EstablecerValoresPorColumna(0, Punto.X, Punto.Y, 1);

			return Retorno;
		}