commit | aa35831d1d0e4c798a63fe772430adc4f3a038cd | [log] [tgz] |
---|---|---|
author | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Jan 29 20:28:49 2013 +0000 |
committer | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Jan 29 20:28:49 2013 +0000 |
tree | 1bff42e085bfcf17f906982d9924a81b5b5a79c3 | |
parent | 81d3ce0b63bc87769fd543c2af79e7233d266d09 [diff] [blame] |
shape ops work in progress git-svn-id: http://skia.googlecode.com/svn/trunk@7453 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/LineParameters.h b/experimental/Intersection/LineParameters.h index 8155ad8..637b3b6 100644 --- a/experimental/Intersection/LineParameters.h +++ b/experimental/Intersection/LineParameters.h
@@ -81,7 +81,7 @@ } double controlPtDistance(const Cubic& pts, int index) const { - assert(index == 1 || index == 2); + SkASSERT(index == 1 || index == 2); return a * pts[index].x + b * pts[index].y + c; }