|
|
| CameraSphericalInterpolation (const CameraSphericalInterpolation &) |
|
| CameraSphericalInterpolation (InviwoApplication *app=nullptr) |
| virtual CameraSphericalInterpolation * | clone () const override |
| virtual void | deserialize (Deserializer &d) override |
| virtual bool | equal (const Interpolation &other) const override |
| virtual std::string_view | getClassIdentifier () const override |
| virtual std::string_view | getDisplayName () const override |
| virtual std::string_view | getIdentifier () const override |
| virtual void | operator() (const std::vector< std::unique_ptr< CameraKeyframe > > &keys, Seconds from, Seconds to, CameraKeyframe::value_type &out) const override |
|
CameraSphericalInterpolation & | operator= (const CameraSphericalInterpolation &)=delete |
| virtual void | serialize (Serializer &s) const override |
| | Interpolation (const Interpolation &rhs) |
| | Interpolation (InviwoApplication *app) |
| virtual InviwoApplication * | getInviwoApplication () override |
| | Interpolation (InviwoApplication *app) |
|
template<typename... Ts> |
| void | addProperties (Ts &... properties) |
|
void | addProperty (Property &property) |
|
void | addProperty (Property *property, bool owner=true) |
|
Property * | addProperty (std::unique_ptr< Property > property) |
|
iterator | begin () |
|
const_iterator | begin () const |
|
const_iterator | cbegin () const |
|
const_iterator | cend () const |
| virtual void | clear () |
| | Remove all properties; Owned properties will be deleted.
|
|
bool | empty () const |
|
iterator | end () |
|
const_iterator | end () const |
|
const_iterator | find (Property *property) const |
|
const std::vector< CompositeProperty * > & | getCompositeProperties () const |
|
InvalidationLevel | getInvalidationLevel () const |
|
virtual PropertyOwner * | getOwner () |
|
virtual const PropertyOwner * | getOwner () const |
|
virtual Processor * | getProcessor () |
|
virtual const Processor * | getProcessor () const |
|
const std::vector< Property * > & | getProperties () const |
|
template<class T> |
| std::vector< T * > | getPropertiesByType (bool recursiveSearch=false) const |
|
std::vector< Property * > | getPropertiesRecursive () const |
|
std::vector< Property * > & | getPropertiesRecursive (std::vector< Property * > &destination) const |
|
template<std::derived_from< Property > T = Property> |
| T * | getProperty (std::string_view identifier) |
|
Property * | getPropertyByIdentifier (std::string_view identifier, bool recursiveSearch=false) const |
|
Property * | getPropertyByPath (std::string_view path) const |
| void | insertProperty (size_t index, Property &property) |
| | insert property property at position index If index is not valid, the property is appended.
|
| virtual void | insertProperty (size_t index, Property *property, bool owner=true) |
| | insert property property at position index If index is not valid, the property is appended.
|
| Property * | insertProperty (size_t index, std::unique_ptr< Property > property) |
| | insert property property at position index If index is not valid, the property is appended.
|
| virtual void | invalidate (InvalidationLevel invalidationLevel, Property *modifiedProperty) |
| virtual void | invokeEvent (Event *event) override |
|
virtual bool | isValid () const |
|
virtual bool | move (Property *property, size_t newIndex) |
|
PropertyOwner & | operator= (const PropertyOwner &that)=delete |
|
Property * | operator[] (size_t) |
|
const Property * | operator[] (size_t) const |
|
virtual Property * | removeProperty (iterator it) |
|
Property * | removeProperty (Property &property) |
|
Property * | removeProperty (Property *property) |
| Property * | removeProperty (size_t index) |
| | remove property referred to by index
|
|
Property * | removeProperty (std::string_view identifier) |
|
virtual void | resetAllProperties () |
|
virtual void | setAllPropertiesCurrentStateAsDefault () |
| virtual void | setValid () |
|
size_t | size () const |
|
virtual | ~PropertyOwner () |
| | Removes all properties and notifies its observers of the removal.
|
|
void | notifyObserversDidAddProperty (Property *property, size_t index) |
|
void | notifyObserversDidRemoveProperty (PropertyOwner *owner, Property *property, size_t index) |
|
void | notifyObserversWillAddProperty (PropertyOwner *owner, Property *property, size_t index) |
|
void | notifyObserversWillRemoveProperty (Property *property, size_t index) |
|
void | addObserver (PropertyOwnerObserver *observer) |
|
bool | isObservedBy (PropertyOwnerObserver *observer) const |
| Observable< PropertyOwnerObserver > & | operator= (const Observable< PropertyOwnerObserver > &other) |
|
void | removeObserver (PropertyOwnerObserver *observer) |
| virtual void | startBlockingNotifications () override final |
| virtual void | stopBlockingNotifications () override final |
|
|
using | key_type |
|
using | result_type |
|
using | const_iterator = std::vector<Property*>::const_iterator |
|
using | iterator = std::vector<Property*>::iterator |
|
| InterpolationTyped (const InterpolationTyped &rhs) |
| | Interpolation (const Interpolation &rhs) |
|
void | forEachProperty (std::function< void(Property &)> callback, bool recursiveSearch=false) const |
|
PropertyOwner & | operator= (PropertyOwner &&that) |
|
| PropertyOwner (const PropertyOwner &rhs) |
|
| PropertyOwner (PropertyOwner &&rhs) |
|
void | forEachObserver (C callback) |
|
void | addObservationHelper (Observer *observer) |
|
virtual void | addObserver (Observer *observer)=0 |
|
void | removeObservationHelper (Observer *observer) |
|
virtual void | removeObserver (Observer *observer)=0 |
|
InviwoApplication * | app_ |
|
std::vector< CompositeProperty * > | compositeProperties_ |
|
std::vector< EventProperty * > | eventProperties_ |
|
std::vector< std::unique_ptr< Property > > | ownedProperties_ |
|
std::vector< Property * > | properties_ |
Spherical interpolation between two neighboring key frames.
- Orbit around lookAt if lookFrom's are different between key frames.
- Pan/tilt (rotate lookAt between key frames) otherwise.
- Note
- Only modifies lookFrom, lookAt, lookUp.
- See also
- CameraPanTiltInterpolation