|
| std::size_t | numberPaths () const |
| | Get the number of sub paths. More...
|
| |
| PathPtr_t | pathAtRank (std::size_t rank) const |
| |
| std::size_t | rankAtParam (const value_type ¶m, value_type &localParam) const |
| |
| void | appendPath (const PathPtr_t &path) |
| | Append a path at the end of the vector. More...
|
| |
| void | concatenate (const PathVector &path) HPP_CORE_DEPRECATED |
| |
| void | concatenate (const PathVectorPtr_t &path) |
| |
| virtual Configuration_t | initial () const |
| | Get the initial configuration. More...
|
| |
| virtual Configuration_t | end () const |
| | Get the final configuration. More...
|
| |
| void | flatten (PathVectorPtr_t flattenedPath) const |
| |
| virtual PathPtr_t | reverse () const |
| | Reversion of a path. More...
|
| |
| virtual | ~Path () |
| | Destructor. More...
|
| |
| template<class T > |
| shared_ptr< T > | as (void) |
| | Static cast into a derived type. More...
|
| |
| template<class T > |
| shared_ptr< const T > | as (void) const |
| | Static cast into a derived type. More...
|
| |
| PathPtr_t | extract (const interval_t &subInterval) const |
| |
| PathPtr_t | extract (const value_type &tmin, const value_type &tmax) const |
| |
| Configuration_t | operator() (const value_type &time, bool &success) const HPP_CORE_DEPRECATED |
| |
| bool | operator() (ConfigurationOut_t result, const value_type &time) const |
| |
| Configuration_t | eval (const value_type &time, bool &success) const |
| | Configuration at time. More...
|
| |
| bool | eval (ConfigurationOut_t result, const value_type &time) const |
| | Configuration at time. More...
|
| |
| bool | at (const value_type &time, ConfigurationOut_t result) const |
| | Get the configuration at a parameter without applying the constraints. More...
|
| |
| void | derivative (vectorOut_t result, const value_type &time, size_type order) const |
| |
| void | velocityBound (vectorOut_t result, const value_type &t0, const value_type &t1) const |
| |
| size_type | outputSize () const |
| | Get size of configuration space. More...
|
| |
| size_type | outputDerivativeSize () const |
| | Get size of velocity. More...
|
| |
| const interval_t & | timeRange () const |
| | Get interval of definition. More...
|
| |
| virtual value_type | length () const |
| | Get length of definition interval. More...
|
| |
| const ConstraintSetPtr_t & | constraints () const |
| | Get constraints the path is subject to. More...
|
| |
| const interval_t & | paramRange () const |
| |
| void | timeParameterization (const TimeParameterizationPtr_t &tp, const interval_t &tr) |
| | Set the time parameterization function. More...
|
| |
|
| virtual std::ostream & | print (std::ostream &os) const |
| | Print path in a stream. More...
|
| |
| | PathVector (std::size_t outputSize, std::size_t outputDerivativeSize) |
| | Constructor. More...
|
| |
| | PathVector (std::size_t outputSize, std::size_t outputDerivativeSize, const ConstraintSetPtr_t &constraint) |
| | Constructor. More...
|
| |
| | PathVector (const PathVector &path) |
| | Copy constructor. More...
|
| |
| | PathVector (const PathVector &path, const ConstraintSetPtr_t &constraints) |
| | Copy constructor with constraints. More...
|
| |
| void | init (PathVectorPtr_t self) |
| |
| virtual bool | impl_compute (ConfigurationOut_t result, value_type t) const |
| | Function evaluation without applying constraints. More...
|
| |
| virtual void | impl_derivative (vectorOut_t result, const value_type &t, size_type order) const |
| | Virtual implementation of derivative. More...
|
| |
| virtual PathPtr_t | impl_extract (const interval_t &subInterval) const |
| |
| virtual void | impl_velocityBound (vectorOut_t bound, const value_type ¶m0, const value_type ¶m1) const |
| | Virtual implementation of velocity bound. More...
|
| |
| | PathVector () |
| |
| | Path (const interval_t &interval, size_type outputSize, size_type outputDerivativeSize, const ConstraintSetPtr_t &constraints) |
| |
| | Path (const interval_t &interval, size_type outputSize, size_type outputDerivativeSize) |
| |
| | Path (const Path &path) |
| | Copy constructor. More...
|
| |
| | Path (const Path &path, const ConstraintSetPtr_t &constraints) |
| | Copy constructor with constraints. More...
|
| |
| void | init (const PathWkPtr_t &self) |
| |
| void | constraints (const ConstraintSetPtr_t &constraint) |
| |
| virtual void | checkPath () const |
| | Should be called by child classes after having init. More...
|
| |
| void | timeRange (const interval_t &timeRange) |
| |
| const TimeParameterizationPtr_t & | timeParameterization () const |
| |
| value_type | paramLength () const |
| |
| Configuration_t | configAtParam (const value_type ¶m, bool &success) const |
| |
| | Path () |
| |
Concatenation of several paths.