2013-04-08 11:50:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
#include "PathOpsTestCommon.h"
|
2013-07-16 16:11:16 +00:00
|
|
|
#include "SkPathOpsBounds.h"
|
2013-04-08 11:50:46 +00:00
|
|
|
#include "SkPathOpsCubic.h"
|
2013-07-16 16:11:16 +00:00
|
|
|
#include "SkPathOpsLine.h"
|
|
|
|
#include "SkPathOpsQuad.h"
|
|
|
|
#include "SkPathOpsTriangle.h"
|
2013-04-08 11:50:46 +00:00
|
|
|
|
2013-06-17 14:10:36 +00:00
|
|
|
void CubicToQuads(const SkDCubic& cubic, double precision, SkTArray<SkDQuad, true>& quads) {
|
|
|
|
SkTArray<double, true> ts;
|
2013-04-08 11:50:46 +00:00
|
|
|
cubic.toQuadraticTs(precision, &ts);
|
2013-06-04 17:59:42 +00:00
|
|
|
if (ts.count() <= 0) {
|
2013-04-08 11:50:46 +00:00
|
|
|
SkDQuad quad = cubic.toQuad();
|
2013-06-17 14:10:36 +00:00
|
|
|
quads.push_back(quad);
|
2013-04-08 11:50:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
double tStart = 0;
|
|
|
|
for (int i1 = 0; i1 <= ts.count(); ++i1) {
|
|
|
|
const double tEnd = i1 < ts.count() ? ts[i1] : 1;
|
|
|
|
SkDCubic part = cubic.subDivide(tStart, tEnd);
|
|
|
|
SkDQuad quad = part.toQuad();
|
2013-06-17 14:10:36 +00:00
|
|
|
quads.push_back(quad);
|
2013-04-08 11:50:46 +00:00
|
|
|
tStart = tEnd;
|
|
|
|
}
|
|
|
|
}
|
2013-07-16 16:11:16 +00:00
|
|
|
|
|
|
|
static bool SkDoubleIsNaN(double x) {
|
|
|
|
return x != x;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ValidBounds(const SkPathOpsBounds& bounds) {
|
|
|
|
if (SkScalarIsNaN(bounds.fLeft)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (SkScalarIsNaN(bounds.fTop)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (SkScalarIsNaN(bounds.fRight)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return !SkScalarIsNaN(bounds.fBottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ValidCubic(const SkDCubic& cubic) {
|
|
|
|
for (int index = 0; index < 4; ++index) {
|
|
|
|
if (!ValidPoint(cubic[index])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ValidLine(const SkDLine& line) {
|
|
|
|
for (int index = 0; index < 2; ++index) {
|
|
|
|
if (!ValidPoint(line[index])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ValidPoint(const SkDPoint& pt) {
|
|
|
|
if (SkDoubleIsNaN(pt.fX)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-17 07:01:13 +00:00
|
|
|
return !SkDoubleIsNaN(pt.fY);
|
2013-07-16 16:11:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ValidPoints(const SkPoint* pts, int count) {
|
|
|
|
for (int index = 0; index < count; ++index) {
|
|
|
|
if (SkScalarIsNaN(pts[index].fX)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (SkScalarIsNaN(pts[index].fY)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ValidQuad(const SkDQuad& quad) {
|
|
|
|
for (int index = 0; index < 3; ++index) {
|
|
|
|
if (!ValidPoint(quad[index])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ValidTriangle(const SkDTriangle& triangle) {
|
|
|
|
for (int index = 0; index < 3; ++index) {
|
|
|
|
if (!ValidPoint(triangle.fPts[index])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ValidVector(const SkDVector& v) {
|
|
|
|
if (SkDoubleIsNaN(v.fX)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-17 07:01:13 +00:00
|
|
|
return !SkDoubleIsNaN(v.fY);
|
2013-07-16 16:11:16 +00:00
|
|
|
}
|