17 lines
287 B
C++
17 lines
287 B
C++
//
|
|
// KRFloat.h
|
|
// Kraken
|
|
//
|
|
// Created by Kearwood Gilbert on 2013-05-03.
|
|
// Copyright (c) 2013 Kearwood Software. All rights reserved.
|
|
//
|
|
|
|
#ifndef KRFLOAT_H
|
|
#define KRFLOAT_H
|
|
|
|
namespace KRFloat {
|
|
float SmoothStep(float a, float b, float t);
|
|
};
|
|
|
|
#endif /* defined(KRFLOAT_H) */
|