changed because of naming conflict

Fork of LinearBlend by Bradley Perry

LinearBlend.h

Committer:
perr1940
Date:
2014-11-14
Revision:
2:8e81d72bf792
Child:
4:a25456624155

File content as of revision 2:8e81d72bf792:

#ifndef LINEARBLEND_H
#define LINEARBLEND_H

#include "mbed.h"

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


    /***********************************************************
    Functions
    ***********************************************************/
    public:
    LinearBlend(); 
    /*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