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

Unified Diff: core/cross/gpu2d/cubic_math_utils.h

Issue 652016: Added the bulk of the algorithm for GPU accelerated 2D vector curve... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/cross/class_manager.cc ('k') | core/cross/gpu2d/cubic_math_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/cross/gpu2d/cubic_math_utils.h
===================================================================
--- core/cross/gpu2d/cubic_math_utils.h (revision 40063)
+++ core/cross/gpu2d/cubic_math_utils.h (working copy)
@@ -96,6 +96,17 @@
float bx, float by,
float cx, float cy);
+// Determines whether the triangles defined by the points (a1, b1, c1)
+// and (a2, b2, c2) overlap. The definition of this function is that
+// if the two triangles only share an adjacent edge or vertex, they
+// are not considered to overlap.
+bool TrianglesOverlap(float a1x, float a1y,
+ float b1x, float b1y,
+ float c1x, float c1y,
+ float a2x, float a2y,
+ float b2x, float b2y,
+ float c2x, float c2y);
+
} // namespace cubic
} // namespace gpu2d
} // namespace o3d
« no previous file with comments | « core/cross/class_manager.cc ('k') | core/cross/gpu2d/cubic_math_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698