From: Luca Heltai Date: Sat, 13 Sep 2014 12:12:24 +0000 (+0200) Subject: Merge pull request #144 from luca-heltai/pr_tria_accessor_manifold_aware X-Git-Tag: v8.2.0-rc1~153 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb33cbf6a0cad2966eb9b748ae0a2b02691aef59;p=dealii.git Merge pull request #144 from luca-heltai/pr_tria_accessor_manifold_aware Made TriaAccessor aware of Manifold. This is the initial work to make TriaAccessor more aware of Manifold. This allows (and future PR will implement this) to switch internal calls to get_manifold to syntax like cell->center(true); line->center(true): line->point(p); instead of the fairly redundant versions cell->get_manifold().get_new_point_on_cell(cell); line->get_manifold().get_new_point_on_line(line); vector > ps(2); ps[0] = line->vertex(0); ps[1] = line->vertex(1); vector ws(2, .5); Quadrature<2> quadrature(ws, ps); line->get_manifold().get_new_point(quadrature); --- eb33cbf6a0cad2966eb9b748ae0a2b02691aef59