------------------------------------------------------------------------------
| 2295 | |
| 2296 | //------------------------------------------------------------------------------ |
| 2297 | bool vtkSVGContextDevice2D::AreaLessThanTolerance( |
| 2298 | const vtkVector2f& p1, const vtkVector2f& p2, const vtkVector2f& p3) |
| 2299 | { |
| 2300 | return this->LengthLessThanTolerance(p1, p2) && this->LengthLessThanTolerance(p1, p3) && |
| 2301 | this->LengthLessThanTolerance(p2, p3); |
| 2302 | } |
| 2303 | |
| 2304 | //------------------------------------------------------------------------------ |
| 2305 | bool vtkSVGContextDevice2D::LengthLessThanTolerance(const vtkVector2f& p1, const vtkVector2f& p2) |
no test coverage detected