bookmaker refresh

Add support for more operator overloads.
Add SkSurface, SkPoint, SkIPoint, SkIPoint16 docs.
(SkImage doc skeleton added, but not really started.)
Force recompile all examples.

Docs-Preview: https://skia.org/?cl=67726
Bug: skia:6898
Change-Id: If9e2d23f79d5db64146dd22588f5cac970614b8a
Reviewed-on: https://skia-review.googlesource.com/67726
Commit-Queue: Cary Clark <caryclark@google.com>
Reviewed-by: Cary Clark <caryclark@google.com>
diff --git a/docs/SkPath_Reference.bmh b/docs/SkPath_Reference.bmh
index 1027a71..83943b0 100644
--- a/docs/SkPath_Reference.bmh
+++ b/docs/SkPath_Reference.bmh
@@ -185,8 +185,8 @@
 #Class SkPath
 
 Paths contain geometry. Paths may be empty, or contain one or more Verbs that
-outline a figure. Path always starts with a move verb to a Cartesian
-coordinate, and may be followed by additional verbs that add lines or curves.
+outline a figure. Path always starts with a move verb to a Cartesian_Coordinate,
+and may be followed by additional verbs that add lines or curves.
 Adding a close verb makes the geometry into a continuous loop, a closed contour.
 Paths may contain any number of contours, each beginning with a move verb.
 
@@ -376,8 +376,8 @@
 ##
 #Const kCubic_Verb 4
     Adds Cubic from Last_Point, using two control Points, and end Point. 
-    Cubic is a third-order Bezier section within tangents from Last_Point to
-    first control Point, and from second control Point to end Point.
+    Cubic is a third-order Bezier_Curve section within tangents from Last_Point
+    to first control Point, and from second control Point to end Point.
 ##
 #Const kClose_Verb 5
     Closes Contour, connecting Last_Point to kMove_Verb Point.
@@ -1609,7 +1609,7 @@
 #StdOut ##
 ##
 
-#SeeAlso IsQuadDegenerate IsCubicDegenerate SkPoint::equalsWithinTolerance 
+#SeeAlso IsQuadDegenerate IsCubicDegenerate 
 ##
 
 # ------------------------------------------------------------------------------
@@ -1661,7 +1661,7 @@
 #StdOut ##
 ##
 
-#SeeAlso IsLineDegenerate IsCubicDegenerate SkPoint::equalsWithinTolerance 
+#SeeAlso IsLineDegenerate IsCubicDegenerate 
 ##
 
 # ------------------------------------------------------------------------------
@@ -2858,7 +2858,7 @@
 #Alias Cubic_Bezier
 #Alias Cubic_Beziers
 
-Cubic describes a Bezier curve segment described by a third-order polynomial. 
+Cubic describes a Bezier_Curve segment described by a third-order polynomial. 
 Cubic begins at a start Point, curving towards the first control Point;
 and curves from the end Point towards the second control Point.