https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 20d18b4422e705afe20f36f083e6984a265e20bf authored by Lars Bilke on 27 May 2021, 10:17:41 UTC
[cmake] Return early in tools CMakeLists, avoids indentation.
Tip revision: 20d18b4
Point3d.cpp
/**
 * \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
 */

#include "Point3d.h"

namespace MathLib
{
extern const Point3d ORIGIN{{{0.0, 0.0, 0.0}}};
}
back to top