swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: df20643cd8b7311e0fbf1ec4b9d13ac8a05539ca authored by Thomas Fischer on 09 June 2021, 05:56:06 UTC
[T/HM] Use multiple meshes instead of geometry.
Tip revision: df20643
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