| commit | a3f05facab01712a1b58e60a70b0dbdb90a39830 | [log] [tgz] |
|---|---|---|
| author | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Fri Jun 01 17:44:28 2012 +0000 |
| committer | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Fri Jun 01 17:44:28 2012 +0000 |
| tree | 07ed26e6e37b2b66332a7c1a4af8cbe91f4845ff | |
| parent | 99840553cda3184ec2e32fbb192d104741ceea86 [diff] [blame] |
shape ops work in progress git-svn-id: http://skia.googlecode.com/svn/trunk@4118 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/LineUtilities.cpp b/experimental/Intersection/LineUtilities.cpp index 8d229e4..ca94544 100644 --- a/experimental/Intersection/LineUtilities.cpp +++ b/experimental/Intersection/LineUtilities.cpp
@@ -51,7 +51,10 @@ // =0 for P2 on the line // <0 for P2 right of the line // See: the January 2001 Algorithm on Area of Triangles +#if 0 float isLeft( _Point P0, _Point P1, _Point P2 ) { return (float) ((P1.x - P0.x)*(P2.y - P0.y) - (P2.x - P0.x)*(P1.y - P0.y)); } +#endif +