Changeset 10527 for OpenSceneGraph/trunk/include/osgAnimation/Sampler
- Timestamp:
- 08/06/09 14:40:06 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osgAnimation/Sampler (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osgAnimation/Sampler
r9531 r10527 1 1 /* -*-c++-*- 2 * Copyright (C) 2008 Cedric Pinson < mornifle@plopbyte.net>2 * Copyright (C) 2008 Cedric Pinson <cedric.pinson@plopbyte.net> 3 3 * 4 4 * This library is open source and may be redistributed and/or modified under … … 11 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 12 * OpenSceneGraph Public License for more details. 13 */ 13 * 14 * Authors: 15 * Cedric Pinson <cedric.pinson@plopbyte.net> 16 * Michael Platings <mplatings@pixelpower.com> 17 */ 14 18 15 19 #ifndef OSGANIMATION_SAMPLER_H … … 109 113 110 114 115 typedef TemplateSampler<DoubleStepInterpolator> DoubleStepSampler; 116 typedef TemplateSampler<FloatStepInterpolator> FloatStepSampler; 117 typedef TemplateSampler<Vec2StepInterpolator> Vec2StepSampler; 118 typedef TemplateSampler<Vec3StepInterpolator> Vec3StepSampler; 119 typedef TemplateSampler<Vec4StepInterpolator> Vec4StepSampler; 120 typedef TemplateSampler<QuatStepInterpolator> QuatStepSampler; 121 111 122 typedef TemplateSampler<DoubleLinearInterpolator> DoubleLinearSampler; 112 123 typedef TemplateSampler<FloatLinearInterpolator> FloatLinearSampler; … … 115 126 typedef TemplateSampler<Vec4LinearInterpolator> Vec4LinearSampler; 116 127 typedef TemplateSampler<QuatSphericalLinearInterpolator> QuatSphericalLinearSampler; 128 117 129 typedef TemplateSampler<FloatCubicBezierInterpolator> FloatCubicBezierSampler; 118 130 typedef TemplateSampler<DoubleCubicBezierInterpolator> DoubleCubicBezierSampler;
