OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ScalePoint
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/gfx/
point_f.cc
17
PointF
ScalePoint
(const PointF& p, float x_scale, float y_scale) {
point_f.h
63
GFX_EXPORT PointF
ScalePoint
(const PointF& p, float x_scale, float y_scale);
65
inline PointF
ScalePoint
(const PointF& p, float scale) {
66
return
ScalePoint
(p, scale, scale);
point3_f.h
107
inline Point3F
ScalePoint
(const Point3F& p,
114
inline Point3F
ScalePoint
(const Point3F& p, float scale) {
115
return
ScalePoint
(p, scale, scale, scale);
Completed in 134 milliseconds