1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/*************************************************************************
* Copyright (C) 2013 by Burak ER *
* *
* *
* This program is free software; it is licensed under the terms of the *
* GNU General Public License v2 or later. See file LICENSE for details. *
*************************************************************************/
#ifdef YADE_FEM
#include <lib/base/Math.hpp>
#include <core/BodyContainer.hpp>
#include <core/Scene.hpp>
#include <core/State.hpp>
#include <pkg/common/Sphere.hpp>
#include <pkg/fem/Lin4NodeTetra_Lin4NodeTetra_InteractionElement.hpp>
#include <pkg/fem/Node.hpp>
#include <algorithm>
namespace yade { // Cannot have #include directive inside.
YADE_PLUGIN((Lin4NodeTetra_Lin4NodeTetra_InteractionElement));
CREATE_LOGGER(Lin4NodeTetra_Lin4NodeTetra_InteractionElement);
Lin4NodeTetra_Lin4NodeTetra_InteractionElement::~Lin4NodeTetra_Lin4NodeTetra_InteractionElement() { }
void Lin4NodeTetra_Lin4NodeTetra_InteractionElement::initialize(void) { }
} // namespace yade
#endif //YADE_FEM
|