Skip to content

File force2D.cpp

File List > algorithm > force2D.cpp

Go to the documentation of this file

// Copyright (c) 2012-2013, IGN France.
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include "SFCGAL/algorithm/force2D.h"
#include "SFCGAL/detail/transform/Force2D.h"

namespace SFCGAL::algorithm {

void
force2D(Geometry &g)
{
  transform::Force2D t;
  g.accept(t);
}

} // namespace SFCGAL::algorithm