changed because of naming conflict

Fork of LinearBlend by Bradley Perry

LinearBlend.h

Committer:
perr1940
Date:
2015-05-13
Revision:
4:a25456624155
Parent:
2:8e81d72bf792

File content as of revision 4:a25456624155:

#ifndef LINEARBLEND_H
#define LINEARBLEND_H

#include "mbed.h"

// Define a BaseClass called LinearBlend
class LinearBlend1{
    /***********************************************************
    Constructor
    ***********************************************************/


    /***********************************************************
    Functions
    ***********************************************************/
    public:
    LinearBlend1(); 
    /*void init(float end, float start, int t_blend);
    float* blend(float ref[]);*/
    float* blend(float end, float s, int t_blend, float ref[]);

    /***********************************************************
    Initialize and Define Variables
    ***********************************************************/
    private:
    float slope;
    int t_blend;
    float start;

};

#endif