https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: b1af5b5c83f2f95110032f55bbe693ecbe7a5a46 authored by Lars Bilke on 13 October 2021, 21:26:05 UTC
[cmake] Specify gtest version in versions.json.
Tip revision: b1af5b5
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