Lines Matching refs:SkPoint3
14 const SkPoint3 p0 = SkPoint3::Make(0, 0, 0); in test_eq_ops()
15 const SkPoint3 p1 = SkPoint3::Make(1, 1, 1); in test_eq_ops()
16 const SkPoint3 p2 = SkPoint3::Make(1, 1, 1); in test_eq_ops()
23 SkPoint3 v = SkPoint3::Make(1, 1, 1); in test_ops()
28 SkPoint3 p = v.makeScale(3.0f); in test_ops()
34 SkPoint3 p1 = SkPoint3::Make(20.0f, 2.0f, 10.0f); in test_ops()
35 SkPoint3 p2 = -p1; in test_ops()
51 const SkPoint3 xAxis = SkPoint3::Make(1.0f, 0.0f, 0.0f); in test_dot()
52 const SkPoint3 yAxis = SkPoint3::Make(0.0f, 1.0f, 0.0f); in test_dot()
53 const SkPoint3 zAxis = SkPoint3::Make(0.0f, 0.0f, 1.0f); in test_dot()
64 SkPoint3 v = SkPoint3::Make(13.0f, 2.0f, 7.0f); in test_dot()
70 v = SkPoint3::Make(SK_ScalarRoot2Over2, SK_ScalarRoot2Over2, 0.0f); in test_dot()
81 SkPoint3 point = SkPoint3::Make(x, y, z); in test_length()
84 SkScalar s2 = SkPoint3::Length(x, y, z); in test_length()
92 SkPoint3 point = SkPoint3::Make(x, y, z); in test_normalize()
98 const SkPoint3 empty = SkPoint3::Make(0.0f, 0.0f, 0.0f); in test_normalize()