OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newT
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/skia/src/pathops/
SkDCubicToQuads.cpp
108
double
newT
= start + (index / parts) * (end - start);
109
if (
newT
> 0 &&
newT
< 1) {
110
ts->push_back(
newT
);
/external/skia/src/pathops/
SkDCubicToQuads.cpp
108
double
newT
= start + (index / parts) * (end - start);
109
if (
newT
> 0 &&
newT
< 1) {
110
ts->push_back(
newT
);
/external/chromium_org/third_party/skia/include/core/
SkTArray.h
164
T*
newT
= reinterpret_cast<T*>(this->push_back_raw(1));
165
SkNEW_PLACEMENT(
newT
, T);
166
return *
newT
;
173
T*
newT
= reinterpret_cast<T*>(this->push_back_raw(1));
174
SkNEW_PLACEMENT_ARGS(
newT
, T, (t));
175
return *
newT
;
/external/skia/include/core/
SkTArray.h
164
T*
newT
= reinterpret_cast<T*>(this->push_back_raw(1));
165
SkNEW_PLACEMENT(
newT
, T);
166
return *
newT
;
173
T*
newT
= reinterpret_cast<T*>(this->push_back_raw(1));
174
SkNEW_PLACEMENT_ARGS(
newT
, T, (t));
175
return *
newT
;
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
SweepSphere.java
154
float
newT
= getLowestRoot(a, b, c, t);
160
// float
newT
= getLowestRoot(A, B, C, Float.MAX_VALUE);
161
// if (
newT
> 1.0f)
162
//
newT
= Float.NaN;
164
return
newT
;
187
float
newT
= getLowestRoot(a, b, c, t);
188
if (!Float.isNaN(
newT
)){
189
float f = (EdotV *
newT
- EdotB) / edgeSquared;
192
return
newT
;
296
float
newT
;
[
all
...]
Completed in 321 milliseconds