Home | History | Annotate | Download | only in Intersection
      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 "DataTypes.h"
      8 
      9 // utilities used only for unit testing
     10 bool point_on_parameterized_curve(const Cubic& cubic, const _Point& point);
     11 bool point_on_parameterized_line(const _Line& line, const _Point& point);
     12 bool point_on_parameterized_curve(const Quadratic& quad, const _Point& point);
     13