Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: experimental/Intersection/LineIntersection.h

Issue 867213004: remove prototype pathops code (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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 #ifndef LineIntersection_DEFINE
8 #define LineIntersection_DEFINE
9
10 #include "Intersections.h"
11
12 int horizontalIntersect(const _Line& line, double y, double tRange[2]);
13 int horizontalLineIntersect(const _Line& line, double left, double right,
14 double y, double tRange[2]);
15 void lineIntersect(const _Line& a, const _Line& b, _Point& p);
16 int intersect(const _Line& a, const _Line& b, Intersections&);
17 bool testIntersect(const _Line& a, const _Line& b);
18 int verticalLineIntersect(const _Line& line, double top, double bottom,
19 double x, double tRange[2]);
20
21 #endif
OLDNEW
« no previous file with comments | « experimental/Intersection/LineCubicIntersection_Test.cpp ('k') | experimental/Intersection/LineIntersection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698