Skip to content

File scale.h#

File List > algorithm > scale.h

Go to the documentation of this file

// scale.h
#ifndef SFCGAL_ALGORITHM_SCALE_H
#define SFCGAL_ALGORITHM_SCALE_H

#include "SFCGAL/Geometry.h"
#include "SFCGAL/config.h"

namespace SFCGAL {
namespace algorithm {

SFCGAL_API void
scale(Geometry &g, double s);

SFCGAL_API void
scale(Geometry &g, double sx, double sy, double sz = 0.0);

SFCGAL_API void
scale(Geometry &g, double sx, double sy, double sz, double cx, double cy,
      double cz);

} // namespace algorithm
} // namespace SFCGAL

#endif