RAMSES Documentation  27.0.130
Information for RAMSES users and developers
Spline.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Copyright (C) 2014 BMW Car IT GmbH
3 // -------------------------------------------------------------------------
4 // This Source Code Form is subject to the terms of the Mozilla Public
5 // License, v. 2.0. If a copy of the MPL was not distributed with this
6 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
7 // -------------------------------------------------------------------------
8 
9 #ifndef RAMSES_SPLINE_H
10 #define RAMSES_SPLINE_H
11 
13 
14 namespace ramses
15 {
20  {
21  public:
27  uint32_t getNumberOfKeys() const;
28 
32  class SplineImpl& impl;
33 
34  protected:
38  friend class AnimationSystemData;
39 
45  explicit Spline(SplineImpl& pimpl);
46 
50  virtual ~Spline();
51  };
52 }
53 
54 #endif
#define RAMSES_API
Definition: APIExport.h:35
The AnimationObject is a base class for all client API objects owned by an AnimationSystem.
Definition: AnimationObject.h:20
The Spline is a set of keys describing an animation.
Definition: Spline.h:20
uint32_t getNumberOfKeys() const
class SplineImpl & impl
Definition: Spline.h:32
virtual ~Spline()
Destructor of Spline.
Spline(SplineImpl &pimpl)
Default constructor of Spline.
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15