OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:effectivepercent
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/svg/
SVGAnimationElement.cpp
428
void SVGAnimationElement::currentValuesFromKeyPoints(float percent, float&
effectivePercent
, String& from, String& to) const
433
effectivePercent
= calculatePercentFromKeyPoints(percent);
434
unsigned index =
effectivePercent
== 1 ? m_values.size() - 2 : static_cast<unsigned>(
effectivePercent
* (m_values.size() - 1));
439
void SVGAnimationElement::currentValuesForValuesAnimation(float percent, float&
effectivePercent
, String& from, String& to) const
447
return currentValuesFromKeyPoints(percent,
effectivePercent
, from, to);
459
effectivePercent
= 0;
479
effectivePercent
= percent == 1 ? 1 : (percent - fromPercent) / (toPercent - fromPercent);
483
effectivePercent
= calculatePercentForSpline(
effectivePercent
, index)
[
all
...]
SVGAnimationElement.h
100
void currentValuesForValuesAnimation(float percent, float&
effectivePercent
, String& from, String& to) const;
103
void currentValuesFromKeyPoints(float percent, float&
effectivePercent
, String& from, String& to) const;
Completed in 34 milliseconds