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 "tests/PathOpsTestCommon.h" 8 9 namespace PathOpsCubicIntersectionTestData { 10 11 extern const CubicPts pointDegenerates[]; 12 extern const CubicPts notPointDegenerates[]; 13 extern const CubicPts tests[][2]; 14 extern CubicPts hexTests[][2]; 15 16 extern const CubicPts lines[]; 17 extern const CubicPts notLines[]; 18 extern const CubicPts modEpsilonLines[]; 19 extern const CubicPts lessEpsilonLines[]; 20 extern const CubicPts negEpsilonLines[]; 21 22 extern const size_t pointDegenerates_count; 23 extern const size_t notPointDegenerates_count; 24 extern const size_t tests_count; 25 extern const size_t hexTests_count; 26 extern const size_t lines_count; 27 extern const size_t notLines_count; 28 extern const size_t modEpsilonLines_count; 29 extern const size_t lessEpsilonLines_count; 30 extern const size_t negEpsilonLines_count; 31 32 } // namespace PathOpsCubicIntersectionTestData 33