https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 2573090af6357c66486d5bb6ad81ab5618768d70 authored by wenqing on 29 June 2021, 11:43:14 UTC
Merge branch 'LIE_improvement' into 'master'
Tip revision: 2573090
FaceRule.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include "Element.h"

namespace MeshLib
{

class FaceRule
{
public:
    /// Constant: Dimension of this mesh element
    static const unsigned dimension = 2u;

    /// Returns the face i of the element.
    static const Element* getFace(const Element* e, unsigned i) { return e->getEdge(i); }

    /// Constant: The number of faces
    static const unsigned n_faces = 0;

    /**
     * Checks if the node order of an element is correct by testing surface normals.
     * For 2D elements true is returned if the normal points (roughly) upwards.
     */
    static bool testElementNodeOrder(const Element* /*e*/);

    /// \returns the first vector forming the surface' plane
    static Eigen::Vector3d getFirstSurfaceVector(Element const* const e);

    /// \returns the second vector forming the surface' plane
    static Eigen::Vector3d getSecondSurfaceVector(Element const* const e);

    /// Returns the surface normal of a 2D element.
    static Eigen::Vector3d getSurfaceNormal(const Element* e);

}; /* class */

}  // namespace MeshLib
back to top