fixed Point::set_zero()

This commit is contained in:
zzzzrrr 2011-01-19 20:54:27 -05:00
parent 717ceafdd3
commit 105c2f16cc
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,8 @@ struct Point {
/// Set this point to all zeros.
void set_zero()
{
x = 0.0f;
y = 0.0f;
x = 0.0;
y = 0.0;
}
/// Set this point to some specified coordinates.