[gegl] matrix: s/GeglMatrix/GeglMatrix3/ in doc comments



commit 06b799d867a20c17dade72b708be4ab8c7ec5640
Author: Ell <ell_se yahoo com>
Date:   Sat Mar 3 02:43:45 2018 -0500

    matrix: s/GeglMatrix/GeglMatrix3/ in doc comments

 gegl/gegl-matrix.h |   40 ++++++++++++++++++++--------------------
 1 files changed, 20 insertions(+), 20 deletions(-)
---
diff --git a/gegl/gegl-matrix.h b/gegl/gegl-matrix.h
index 1a27d8a..f1763ea 100644
--- a/gegl/gegl-matrix.h
+++ b/gegl/gegl-matrix.h
@@ -64,7 +64,7 @@ GeglMatrix3 * gegl_matrix3_new (void);
 
 /**
  * gegl_matrix3_identity:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  *
  * Set the provided @matrix to the identity matrix.
  */
@@ -72,8 +72,8 @@ void       gegl_matrix3_identity        (GeglMatrix3 *matrix);
 
 /**
  * gegl_matrix3_equal:
- * @matrix1: a #GeglMatrix
- * @matrix2: a #GeglMatrix
+ * @matrix1: a #GeglMatrix3
+ * @matrix2: a #GeglMatrix3
  *
  * Check if two matrices are equal.
  *
@@ -84,7 +84,7 @@ gboolean   gegl_matrix3_equal           (GeglMatrix3 *matrix1,
 
 /**
  * gegl_matrix3_is_identity:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  *
  * Check if a matrix is the identity matrix.
  *
@@ -94,7 +94,7 @@ gboolean   gegl_matrix3_is_identity     (GeglMatrix3 *matrix);
 
 /**
  * gegl_matrix3_is_scale:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  *
  * Check if a matrix only does scaling.
  *
@@ -104,7 +104,7 @@ gboolean   gegl_matrix3_is_scale        (GeglMatrix3 *matrix);
 
 /**
  * gegl_matrix3_is_translate:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  *
  * Check if a matrix only does translation.
  *
@@ -114,8 +114,8 @@ gboolean   gegl_matrix3_is_translate    (GeglMatrix3 *matrix);
 
 /**
  * gegl_matrix3_copy_into:
- * @dst: a #GeglMatrix
- * @src: a #GeglMatrix
+ * @dst: a #GeglMatrix3
+ * @src: a #GeglMatrix3
  *
  * Copies the matrix in @src into @dst.
  */
@@ -124,7 +124,7 @@ void  gegl_matrix3_copy_into (GeglMatrix3 *dst,
 
 /**
  * gegl_matrix3_copy:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  *
  * Returns a copy of @src.
  */
@@ -132,7 +132,7 @@ GeglMatrix3 *   gegl_matrix3_copy (GeglMatrix3 *matrix);
 
 /**
  * gegl_matrix3_determinant:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  *
  * Returns the determinant for the matrix.
  */
@@ -140,7 +140,7 @@ gdouble    gegl_matrix3_determinant     (GeglMatrix3 *matrix);
 
 /**
  * gegl_matrix3_invert:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  *
  * Inverts @matrix.
  */
@@ -148,9 +148,9 @@ void       gegl_matrix3_invert          (GeglMatrix3 *matrix);
 
 /**
  * gegl_matrix3_multiply:
- * @left: a #GeglMatrix
- * @right: a #GeglMatrix
- * @product: a #GeglMatrix to store the result in.
+ * @left: a #GeglMatrix3
+ * @right: a #GeglMatrix3
+ * @product: a #GeglMatrix3 to store the result in.
  *
  * Multiples @product = @left ยท @right
  */
@@ -160,7 +160,7 @@ void       gegl_matrix3_multiply        (GeglMatrix3 *left,
 
 /**
  * gegl_matrix3_originate:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  * @x: x coordinate of new origin
  * @y: y coordinate of new origin.
  *
@@ -181,7 +181,7 @@ void       gegl_matrix3_originate       (GeglMatrix3 *matrix,
 
 /**
  * gegl_matrix3_transform_point:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  * @x: pointer to an x coordinate
  * @y: pointer to an y coordinate
  *
@@ -195,7 +195,7 @@ void       gegl_matrix3_transform_point (GeglMatrix3 *matrix,
 
 /**
  * gegl_matrix3_parse_string:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  * @string: a string describing the matrix (right now a small subset of the
  * transform strings allowed by SVG)
  *
@@ -205,11 +205,11 @@ void       gegl_matrix3_parse_string    (GeglMatrix3 *matrix,
                                          const gchar *string);
 /**
  * gegl_matrix3_to_string:
- * @matrix: a #GeglMatrix
+ * @matrix: a #GeglMatrix3
  *
- * Serialize a #GeglMatrix to a string.
+ * Serialize a #GeglMatrix3 to a string.
  *
- * Returns a freshly allocated string representing that #GeglMatrix, the
+ * Returns a freshly allocated string representing that #GeglMatrix3, the
  * returned string should be g_free()'d.
  *
  */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]