PathOpsCubicIntersectionTestData.h 884 B

12345678910111213141516171819202122232425262728
  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. extern const CubicPts pointDegenerates[];
  9. extern const CubicPts notPointDegenerates[];
  10. extern const CubicPts tests[][2];
  11. extern CubicPts hexTests[][2];
  12. extern const CubicPts lines[];
  13. extern const CubicPts notLines[];
  14. extern const CubicPts modEpsilonLines[];
  15. extern const CubicPts lessEpsilonLines[];
  16. extern const CubicPts negEpsilonLines[];
  17. extern const size_t pointDegenerates_count;
  18. extern const size_t notPointDegenerates_count;
  19. extern const size_t tests_count;
  20. extern const size_t hexTests_count;
  21. extern const size_t lines_count;
  22. extern const size_t notLines_count;
  23. extern const size_t modEpsilonLines_count;
  24. extern const size_t lessEpsilonLines_count;
  25. extern const size_t negEpsilonLines_count;