Rev | Line | |
---|
[964] | 1 | /*
|
---|
| 2 | Copyright (C) 2005-2006 Feeling Software Inc.
|
---|
| 3 | MIT License: http://www.opensource.org/licenses/mit-license.php
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | /**
|
---|
| 7 | @file FMInterpolation.h
|
---|
| 8 | The file containing the enum for interpolation.
|
---|
| 9 | */
|
---|
| 10 |
|
---|
| 11 | #ifndef _FM_INTERPOLATION_H_
|
---|
| 12 | #define _FM_INTERPOLATION_H_
|
---|
| 13 |
|
---|
| 14 | /**
|
---|
| 15 | A namespace for interpolations.
|
---|
| 16 |
|
---|
| 17 | @ingroup FMath
|
---|
| 18 | */
|
---|
| 19 | namespace FMInterpolation
|
---|
| 20 | {
|
---|
| 21 | /** The different types of interpolation. */
|
---|
| 22 | enum Interpolation
|
---|
| 23 | {
|
---|
| 24 | NONE = 0, /**< No interpolation. Also called step interpolation. */
|
---|
| 25 | LINEAR, /**< Linear interpolation. */
|
---|
| 26 | BEZIER, /**< Bezier interpolation. */
|
---|
| 27 |
|
---|
| 28 | UNKNOWN, /**< Unknown interpolation. */
|
---|
| 29 | DEFAULT = NONE, /**< Default interpolation (None). */
|
---|
| 30 | };
|
---|
| 31 | };
|
---|
| 32 |
|
---|
| 33 | #endif // _FM_INTERPOLATION_H_
|
---|
Note: See
TracBrowser
for help on using the repository browser.