Home
last modified time | relevance | path

Searched refs:getValueAddressAtLocation (Results 1 – 5 of 5) sorted by relevance

/dports/misc/ompl/ompl-1.5.2/src/ompl/base/spaces/
H A DWrapperStateSpace.h342 double *getValueAddressAtLocation(State *state, const ValueLocation &loc) const in getValueAddressAtLocation() function
344 return space_->getValueAddressAtLocation(state->as<StateType>()->getState(), loc); in getValueAddressAtLocation()
347 … const double *getValueAddressAtLocation(const State *state, const ValueLocation &loc) const in getValueAddressAtLocation() function
349 return space_->getValueAddressAtLocation(state->as<StateType>()->getState(), loc); in getValueAddressAtLocation()
/dports/misc/ompl/ompl-1.5.2/src/ompl/base/
H A DScopedState.h294 double *val = space_->getValueAddressAtLocation(state_, it->second);
308 const double *val = space_->getValueAddressAtLocation(state_, it->second);
H A DStateSpace.h391 double *getValueAddressAtLocation(State *state, const ValueLocation &loc) const;
394 … const double *getValueAddressAtLocation(const State *state, const ValueLocation &loc) const;
/dports/misc/ompl/ompl-1.5.2/src/ompl/base/src/
H A DStateSpace.cpp334 reals[i] = *getValueAddressAtLocation(source, locations[i]); in copyToReals()
342 *getValueAddressAtLocation(destination, locations[i]) = reals[i]; in copyFromReals()
345 double *ompl::base::StateSpace::getValueAddressAtLocation(State *state, const ValueLocation &loc) c… in getValueAddressAtLocation() function in ompl::base::StateSpace
353 const double *ompl::base::StateSpace::getValueAddressAtLocation(const State *state, const ValueLoca… in getValueAddressAtLocation() function in ompl::base::StateSpace
365 return (it != locations.end()) ? getValueAddressAtLocation(state, it->second) : nullptr; in getValueAddressAtName()
372 return (it != locations.end()) ? getValueAddressAtLocation(state, it->second) : nullptr; in getValueAddressAtName()
/dports/misc/ompl/ompl-1.5.2/doc/markdown/
H A DreleaseNotes.md251 - Added StateSpace::getValueAddressAtLocation() to allow faster indexing in states using state spac…