Commit c8ede7c9 authored by Marc Rollins's avatar Marc Rollins

Updating documentation to reflect division operations.

parent f32a6fb9
...@@ -96,9 +96,11 @@ operation for each of the coordinates. Besides the class members listed in the d ...@@ -96,9 +96,11 @@ operation for each of the coordinates. Besides the class members listed in the d
pt1 = pt2 - pt3; pt1 = pt2 - pt3;
pt1 = pt2 * a; pt1 = pt2 * a;
pt1 = a * pt2; pt1 = a * pt2;
pt1 = pt2 / a;
pt1 += pt2; pt1 += pt2;
pt1 -= pt2; pt1 -= pt2;
pt1 *= a; pt1 *= a;
pt1 /= a;
double value = norm(pt); // L2 norm double value = norm(pt); // L2 norm
pt1 == pt2; pt1 == pt2;
pt1 != pt2; pt1 != pt2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment