Program Listing for File newton_binomial.hpp

Return to documentation for file (include/bitbots_splines/newton_binomial.hpp)

/*
This code is largely based on the original code by Quentin "Leph" Rouxel and Team Rhoban.
The original files can be found at:
https://github.com/Rhoban/model/
*/
#ifndef BITBOTS_SPLINES_INCLUDE_BITBOTS_SPLINES_NEWTON_BINOMIAL_H_
#define BITBOTS_SPLINES_INCLUDE_BITBOTS_SPLINES_NEWTON_BINOMIAL_H_

#include <stddef.h>

#include "combination.hpp"
#include "polynom.hpp"

namespace bitbots_splines {

class NewtonBinomial {
 public:
  static Polynom expandPolynom(double y, unsigned int degree);

 private:
};

}  // namespace bitbots_splines

#endif