1/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7#include "SkPathOpsCubic.h"
8
9extern const SkDCubic pointDegenerates[];
10extern const SkDCubic notPointDegenerates[];
11extern const SkDCubic tests[][2];
12extern SkDCubic hexTests[][2];
13
14extern const SkDCubic lines[];
15extern const SkDCubic notLines[];
16extern const SkDCubic modEpsilonLines[];
17extern const SkDCubic lessEpsilonLines[];
18extern const SkDCubic negEpsilonLines[];
19
20extern const size_t pointDegenerates_count;
21extern const size_t notPointDegenerates_count;
22extern const size_t tests_count;
23extern const size_t hexTests_count;
24extern const size_t lines_count;
25extern const size_t notLines_count;
26extern const size_t modEpsilonLines_count;
27extern const size_t lessEpsilonLines_count;
28extern const size_t negEpsilonLines_count;
29