Skip to content

Commit

Permalink
Remove a cast that I missed
Browse files Browse the repository at this point in the history
  • Loading branch information
alriddoch committed Mar 28, 2012
1 parent c109911 commit 8492766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wfmath/polygon_funcs.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ bool _Poly2Orient<dim>::expand(const Point<dim>& pd, Point<2>& p2, CoordType eps

Vector<dim> shift = pd - m_origin, start_shift = shift;

CoordType bound = (CoordType)(shift.sqrMag() * epsilon);
CoordType bound = shift.sqrMag() * epsilon;

int j = 0;

Expand Down

0 comments on commit 8492766

Please sign in to comment.