affine_scaling.h

Back to Affine transformation algorithms

pastel/math/affine/

// Description: Scaling affine transformation
// Documentation: affine_algorithms.txt

#ifndef PASTELMATH_AFFINE_SCALING_H
#define PASTELMATH_AFFINE_SCALING_H

#include "pastel/math/affine/affine_transformation.h"

namespace Pastel
{

    //! Returns a scaling affine transformation.
    template <typename Real, integer N>
    AffineTransformation<Real> affineScaling(
        const Vector<Real, N>& scaling);

}

#include "pastel/math/affine/affine_scaling.hpp"

#endif