Updating documentation to reflect division operations.

This commit is contained in:
Marc Rollins 2014-09-22 12:07:16 -07:00
parent f32a6fb9a1
commit c8ede7c9ea

View File

@ -96,9 +96,11 @@ operation for each of the coordinates. Besides the class members listed in the d
pt1 = pt2 - pt3;
pt1 = pt2 * a;
pt1 = a * pt2;
pt1 = pt2 / a;
pt1 += pt2;
pt1 -= pt2;
pt1 *= a;
pt1 /= a;
double value = norm(pt); // L2 norm
pt1 == pt2;
pt1 != pt2;