HomeSort by relevance Sort by last modified time
    Searched refs:m_z (Results 1 - 12 of 12) sorted by null

  /external/webkit/WebCore/platform/graphics/
FloatPoint3D.cpp 33 , m_z(0)
40 , m_z(z)
47 , m_z(0)
53 float length = sqrtf(m_x * m_x + m_y * m_y + m_z * m_z);
58 m_z /= length;
FloatPoint3D.h 41 float z() const { return m_z; }
42 void setZ(float z) { m_z = z; }
49 float m_z; member in class:WebCore::FloatPoint3D
  /external/webkit/WebCore/rendering/style/
StyleTransformData.cpp 33 , m_z(RenderStyle::initialTransformOriginZ())
42 , m_z(o.m_z)
48 return m_x == o.m_x && m_y == o.m_y && m_z == o.m_z && m_operations == o.m_operations;
StyleTransformData.h 49 float m_z; member in class:WebCore::StyleTransformData
RenderStyle.h     [all...]
  /external/webkit/WebCore/platform/graphics/transforms/
TranslateTransformOperation.cpp 35 Length(m_z.type()).blend(m_z, progress), m_type);
40 Length fromZ = fromOp ? fromOp->m_z : Length(m_z.type());
41 return TranslateTransformOperation::create(m_x.blend(fromX, progress), m_y.blend(fromY, progress), m_z.blend(fromZ, progress), m_type);
ScaleTransformOperation.h 46 double z() const { return m_z; }
49 virtual bool isIdentity() const { return m_x == 1 && m_y == 1 && m_z == 1; }
59 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
64 transform.scale3d(m_x, m_y, m_z);
73 , m_z(sz)
81 double m_z; member in class:WebCore::ScaleTransformOperation
ScaleTransformOperation.cpp 35 m_z + (1. - m_z) * progress, m_type);
40 double fromZ = fromOp ? fromOp->m_z : 1.;
43 fromZ + (m_z - fromZ) * progress, m_type);
RotateTransformOperation.cpp 38 return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type);
43 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) ||
44 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) ||
45 (fromOp->m_x == 1 && fromOp->m_y == 0 && fromOp->m_z == 0)) {
49 fromOp ? fromOp->m_z : m_z,
60 (float)(fromOp ? fromOp->m_z : 1),
65 (float)(toOp ? toOp->m_z : 1),
RotateTransformOperation.h 57 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
62 transform.rotate3d(m_x, m_y, m_z, m_angle);
71 , m_z(z)
80 double m_z; member in class:WebCore::RotateTransformOperation
TranslateTransformOperation.h 47 double z(const IntSize&) const { return m_z.calcFloatValue(1); }
50 virtual bool isIdentity() const { return m_x.calcFloatValue(1) == 0 && m_y.calcFloatValue(1) == 0 && m_z.calcFloatValue(1) == 0; }
60 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
74 , m_z(tz)
82 Length m_z; member in class:WebCore::TranslateTransformOperation
  /external/webkit/JavaScriptCore/wtf/
Vector3.h 41 , m_z(0.0)
48 , m_z(z)
55 , m_z(p[2])
62 , m_z(p[2])
68 return sqrt(m_x * m_x + m_y * m_y + m_z * m_z);
73 return !m_x && !m_y && !m_z;
85 m_z *= k;
90 double z() const { return m_z; }
95 double m_z; member in class:WebCore::Vector3
    [all...]

Completed in 55 milliseconds