OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2008 The Android Open Source Project | 2 * Copyright 2008 The Android Open Source Project |
4 * | 3 * |
5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 | 7 |
9 | 8 |
10 #include "SkMathPriv.h" | 9 #include "SkMathPriv.h" |
11 #include "SkPoint.h" | 10 #include "SkPoint.h" |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 return v.lengthSqd(); | 255 return v.lengthSqd(); |
257 } else if (uDotV > uLengthSqd) { | 256 } else if (uDotV > uLengthSqd) { |
258 return b.distanceToSqd(*this); | 257 return b.distanceToSqd(*this); |
259 } else { | 258 } else { |
260 SkScalar det = u.cross(v); | 259 SkScalar det = u.cross(v); |
261 SkScalar temp = det / uLengthSqd; | 260 SkScalar temp = det / uLengthSqd; |
262 temp *= det; | 261 temp *= det; |
263 return temp; | 262 return temp; |
264 } | 263 } |
265 } | 264 } |
OLD | NEW |