本文整理汇总了C++中TemporalValueType类的典型用法代码示例。如果您正苦于以下问题:C++ TemporalValueType类的具体用法?C++ TemporalValueType怎么用?C++ TemporalValueType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TemporalValueType类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: updateValue
ExtrapolatorBase<Value, TimeType>& updateValue(const TimeType&t, const Value&l) {
mValuePast=TemporalValueType(t,extrapolate(t));
mValuePresent.updateValue(t,l);
return *this;
}
开发者ID:danx0r,项目名称:sirikata,代码行数:5,代码来源:Extrapolation.hpp
示例2: f
template <class Functor> bool templatedPropertyHolds(const TimeType&t, const Functor &f)const{
DurationType timeSinceUpdate=t-lastUpdateTime();
if (timeSinceUpdate<mFadeTime) {
return f(mValuePast.value())&&f(mValuePresent.value());
}else {
return f(mValuePresent.value());
}
}
开发者ID:danx0r,项目名称:sirikata,代码行数:8,代码来源:Extrapolation.hpp
示例3: extrapolate
Value extrapolate(const TimeType&t) const {
DurationType timeSinceUpdate=t-lastUpdateTime();
if (mFadeTime<timeSinceUpdate) {
return mValuePresent.extrapolate(t);
}else{
return mValuePast.extrapolate(t)
.blend(mValuePresent.extrapolate(t),
timeSinceUpdate/mFadeTime);
}
}
开发者ID:danx0r,项目名称:sirikata,代码行数:10,代码来源:Extrapolation.hpp
示例4: extrapolate
Value extrapolate(const TimeType&t) const
{
DurationType timeSinceUpdate = std::max(DurationType::zero(),t-lastUpdateTime());
if (mFadeTime<=timeSinceUpdate) {
return mValuePresent.extrapolate(t);
}else{
return mValuePast.extrapolate(t)
.blend(mValuePresent.extrapolate(t),
(float32)(timeSinceUpdate/mFadeTime));
}
}
开发者ID:SpaceCadetNia,项目名称:elysia,代码行数:11,代码来源:Extrapolation.hpp
示例5: resetValue
ExtrapolatorBase<Value, TimeType>& resetValue(const TimeType&t, const Value&l) {
mValuePresent.updateValue(t,l);
mValuePast = mValuePresent;
return *this;
}
开发者ID:danx0r,项目名称:sirikata,代码行数:5,代码来源:Extrapolation.hpp
示例6: lastUpdateTime
TimeType lastUpdateTime()const{
return mValuePresent.time();
}
开发者ID:danx0r,项目名称:sirikata,代码行数:3,代码来源:Extrapolation.hpp
示例7: lastValue
const Value& lastValue() const {
return mValuePresent.value();
}
开发者ID:danx0r,项目名称:sirikata,代码行数:3,代码来源:Extrapolation.hpp
注:本文中的TemporalValueType类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论