File ForceZ.h
File List > detail > transform > ForceZ.h
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
#ifndef SFCGAL_TRANSFORM_FORCEZ_H_
#define SFCGAL_TRANSFORM_FORCEZ_H_
#include "SFCGAL/config.h"
#include "SFCGAL/Kernel.h"
#include "SFCGAL/Transform.h"
namespace SFCGAL {
namespace transform {
class SFCGAL_API ForceZ : public Transform {
public:
ForceZ(const Kernel::FT defaultZ = 0);
/*
* [SFCGAL::Transform]
*/
virtual void
transform(Point &p);
private:
Kernel::FT _defaultZ;
};
} // namespace transform
} // namespace SFCGAL
#endif