blob: 343c94388e433c3d0f01a34195e6a3c89f182d47 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
epoger@google.com1fd56dc2011-06-15 18:04:58 +00008// Unit tests for src/core/SkPoint.cpp and its header
9
10#include "SkPoint.h"
11#include "Test.h"
12
13// Tests that SkPoint::length() and SkPoint::Length() both return
14// approximately expectedLength for this (x,y).
15static void test_length(skiatest::Reporter* reporter, SkScalar x, SkScalar y,
16 SkScalar expectedLength) {
17 SkPoint point;
18 point.set(x, y);
19 SkScalar s1 = point.length();
20 SkScalar s2 = SkPoint::Length(x, y);
bungeman@google.comb7b5d932012-08-24 19:53:58 +000021 //The following should be exactly the same, but need not be.
22 //See http://code.google.com/p/skia/issues/detail?id=816
23 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, s2));
epoger@google.com1fd56dc2011-06-15 18:04:58 +000024 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, expectedLength));
25}
26
27// Tests SkPoint::Normalize() for this (x,y)
28static void test_Normalize(skiatest::Reporter* reporter,
29 SkScalar x, SkScalar y) {
30 SkPoint point;
31 point.set(x, y);
32 SkScalar oldLength = point.length();
33 SkScalar returned = SkPoint::Normalize(&point);
34 SkScalar newLength = point.length();
bungeman@google.comb7b5d932012-08-24 19:53:58 +000035 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
epoger@google.com1fd56dc2011-06-15 18:04:58 +000036 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(newLength, SK_Scalar1));
37}
38
caryclark@google.com42639cd2012-06-06 12:03:39 +000039static void PointTest(skiatest::Reporter* reporter) {
epoger@google.com1fd56dc2011-06-15 18:04:58 +000040 test_length(reporter, SkIntToScalar(3), SkIntToScalar(4), SkIntToScalar(5));
tomhudson@google.com75589252012-04-10 17:42:21 +000041 test_length(reporter, SkFloatToScalar(0.6f), SkFloatToScalar(0.8f),
epoger@google.com1fd56dc2011-06-15 18:04:58 +000042 SK_Scalar1);
43 test_Normalize(reporter, SkIntToScalar(3), SkIntToScalar(4));
tomhudson@google.com75589252012-04-10 17:42:21 +000044 test_Normalize(reporter, SkFloatToScalar(0.6f), SkFloatToScalar(0.8f));
epoger@google.com1fd56dc2011-06-15 18:04:58 +000045}
46
47#include "TestClassDef.h"
48DEFINE_TESTCLASS("Point", PointTestClass, PointTest)