Changeset 10576 for OpenSceneGraph/trunk/include/osgAnimation/CubicBezier
- Timestamp:
- 09/09/09 11:52:54 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osgAnimation/CubicBezier
r9877 r10576 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 … … 37 37 mPoint[2] = v2; 38 38 } 39 // Constructor with value only 40 TemplateCubicBezier(const T& v0) 41 { 42 mPoint[0] = v0; 43 mPoint[1] = v0; 44 mPoint[2] = v0; 45 } 39 46 40 47 TemplateCubicBezier() {}
