Searched refs:mPointF (Results 1 – 1 of 1) sorted by relevance
36 private PointF mPointF; field in PointFTest40 mPointF = new PointF(); in testConstructor()41 mPointF = new PointF(10.0f, 10.0f); in testConstructor()44 mPointF = new PointF(point); in testConstructor()49 mPointF = new PointF(10, 10); in testNegate()50 mPointF.negate(); in testNegate()51 assertEquals(-10.0f, mPointF.x, 0.0f); in testNegate()52 assertEquals(-10.0f, mPointF.y, 0.0f); in testNegate()57 mPointF = new PointF(0.3f, 0.4f); in testLength1()58 assertEquals(0.5f, mPointF.length(), 0.0f); in testLength1()[all …]