https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 056c5dab793a0340e6a500b2f5250fb10b661179 authored by Dmitri Naumov on 02 September 2021, 14:12:50 UTC
[T/TM] Slightly relax tolerance for new BGRa test.
Tip revision: 056c5da
Point.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 "TemplateElement.h"
#include "PointRule1.h"

extern template class MeshLib::TemplateElement<MeshLib::PointRule1>;

namespace MeshLib
{
    using Point = TemplateElement<PointRule1>;
}
back to top