DrawingUtils.h
377 Bytes
//
//  DrawingUtils.h
//  SteveMaggieCpp
//
//  Created by Katarzyna Kalinowska-Górska on 20.05.2017.
//
//
#ifndef DrawingUtils_h
#define DrawingUtils_h
#include "cocos2d.h"
#include <vector>
class DrawingUtils
{
    public:
        static std::vector<cocos2d::Point> calculateSmoothLinePoints(std::vector<cocos2d::Point> threeLastPoints);
};
#endif /* DrawingUtils_h */
