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

gEDA-cvs: gaf.git: branch: master updated (1.5.0-20080706-333-g2155126)



The branch, master has been updated
       via  2155126bafe11b36ca5dfaa1a9c0a06a63f136ee (commit)
      from  0545db388236ea7a7aaa49d8911ad96481b4978e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 libgeda/src/m_bounds.c    |    4 ++--
 libgeda/src/m_hatch.c     |   12 ++++++------
 libgeda/src/m_transform.c |   20 ++++++++++----------
 3 files changed, 18 insertions(+), 18 deletions(-)


=================
 Commit Messages
=================

commit 2155126bafe11b36ca5dfaa1a9c0a06a63f136ee
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Dec 8 16:18:23 2008 +0000

    libgeda: Fix doxygen headers to start consistently
    
    Use the "Qt" style /*!  */ rather than the JavaDoc style /**  */

:100644 100644 fa3c77d... 06808df... M	libgeda/src/m_bounds.c
:100644 100644 612ed62... 267b133... M	libgeda/src/m_hatch.c
:100644 100644 142e27e... bdd20a8... M	libgeda/src/m_transform.c

=========
 Changes
=========

commit 2155126bafe11b36ca5dfaa1a9c0a06a63f136ee
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Mon Dec 8 16:18:23 2008 +0000

    libgeda: Fix doxygen headers to start consistently
    
    Use the "Qt" style /*!  */ rather than the JavaDoc style /**  */

diff --git a/libgeda/src/m_bounds.c b/libgeda/src/m_bounds.c
index fa3c77d..06808df 100644
--- a/libgeda/src/m_bounds.c
+++ b/libgeda/src/m_bounds.c
@@ -20,7 +20,7 @@
 #include <config.h>
 #include <libgeda_priv.h>
 
-/** \brief Initialize a bounds by setting it to empty
+/*! \brief Initialize a bounds by setting it to empty
  *
  *  \param bounds [in] The bounds to set to empty.  This parameter must not
  *  be NULL.
@@ -33,7 +33,7 @@ void m_bounds_init(BOUNDS *bounds)
   bounds->max_y = G_MININT;
 }
 
-/** \brief Calculate the bounds of a set of points
+/*! \brief Calculate the bounds of a set of points
  *
  *  For an empty set of points, this function returns an empty bounds.
  *
diff --git a/libgeda/src/m_hatch.c b/libgeda/src/m_hatch.c
index 612ed62..267b133 100644
--- a/libgeda/src/m_hatch.c
+++ b/libgeda/src/m_hatch.c
@@ -41,7 +41,7 @@ static gint calculate_initial_sweep(gint pitch, gint min_y, gint max_y);
 static gint compare_events(gconstpointer a, gconstpointer b);
 static gint compare_status(gconstpointer a, gconstpointer b);
 
-/** \brief Calculate the initial y cooridinate of the hatch sweep line
+/*! \brief Calculate the initial y cooridinate of the hatch sweep line
  *
  *  This function centers the hatch lines across the extents of the shape being
  *  hatched.  This caclulation provides symmetrical hatch lines inside
@@ -60,7 +60,7 @@ static gint calculate_initial_sweep(gint pitch, gint min_y, gint max_y)
   return min_y + ((delta - ((delta - pitch) / pitch * pitch)) / 2);
 }
 
-/** \brief Compares two sweep events
+/*! \brief Compares two sweep events
  *
  *  Compares two sweep events for ordering the event queue.  The prototype
  *  and behavior are consistant with GCompareFunc.
@@ -79,7 +79,7 @@ static gint compare_events(gconstpointer a, gconstpointer b)
   return (event_a->y0 - event_b->y0);
 }
 
-/** \brief Compares two sweep status structs
+/*! \brief Compares two sweep status structs
  *
  *  Compares two sweep status for ordering the sweep status.  The prototype
  *  and behavior are consistant with GCompareFunc.
@@ -98,7 +98,7 @@ static gint compare_status(gconstpointer a, gconstpointer b)
   return (status_b->x - status_a->x);
 }
 
-/** \brief Calculates line segments to hatch a box shape
+/*! \brief Calculates line segments to hatch a box shape
  *
  *  This function appends new line segments to the lines GArray.  For creating
  *  a hatch pattern, the GArray must be cleared before calling this function.
@@ -143,7 +143,7 @@ void m_hatch_box(BOX *box, gint angle, gint pitch, GArray *lines)
   g_array_free(corners, TRUE);
 }
 
-/** \brief Calculates line segments to hatch a circle.
+/*! \brief Calculates line segments to hatch a circle.
  *
  *  This function appends new line segments to the lines GArray.  For creating
  *  a hatch pattern, the GArray must be cleared before calling this function.
@@ -190,7 +190,7 @@ void m_hatch_circle(CIRCLE *circle, gint angle, gint pitch, GArray *lines)
   }
 }
 
-/** \brief Calculates line segments to hatch an arbitrary polygon.
+/*! \brief Calculates line segments to hatch an arbitrary polygon.
  *
  *  This function appends new line segments to the lines GArray.  For creating
  *  a hatch pattern, the GArray must be cleared before calling this function.
diff --git a/libgeda/src/m_transform.c b/libgeda/src/m_transform.c
index 142e27e..bdd20a8 100644
--- a/libgeda/src/m_transform.c
+++ b/libgeda/src/m_transform.c
@@ -21,7 +21,7 @@
 #include <math.h>
 #include <libgeda_priv.h>
 
-/** \brief Combines two transformations
+/*! \brief Combines two transformations
  *
  *  Combines two matricies using matrix multiplication: a*b.
  *
@@ -44,7 +44,7 @@ void m_transform_combine(TRANSFORM *result, TRANSFORM *a, TRANSFORM *b )
   result->m[1][2] = a->m[1][0] * b->m[0][2] + a->m[1][1] * b->m[1][2] + a->m[1][2];
 }
 
-/** \brief Initialize a transform with the identity matrix.
+/*! \brief Initialize a transform with the identity matrix.
  *
  *  \param transform [out] The transform to initialize with the identity matrix.
  */
@@ -60,7 +60,7 @@ void m_transform_init(TRANSFORM *transform)
   transform->m[1][2] = 0;
 }
 
-/** \brief Calculates the inverse transform
+/*! \brief Calculates the inverse transform
  *
  *  \param transform [in] The given matrix
  *  \param inverse [out] The inverse of the given matrix.
@@ -82,7 +82,7 @@ void m_transform_invert(TRANSFORM *transform, TRANSFORM *inverse)
   inverse->m[1][2] = -( transform->m[0][0]*transform->m[1][2] - transform->m[1][0]*transform->m[0][2] ) / d;
 }
 
-/** \brief Transforms a line segment
+/*! \brief Transforms a line segment
  *
  *  \param transform [in] The transform function.
  *  \param line [inout] The line to transform.
@@ -96,7 +96,7 @@ void m_transform_line(TRANSFORM *transform, LINE *line)
   m_transform_point(transform, &(line->x[1]), &(line->y[1]));
 }
 
-/** \brief Transforms multiple line segments
+/*! \brief Transforms multiple line segments
  *
  *  \param transform [in] The transform function.
  *  \param lines [inout] The GArray of LINE to transform.
@@ -114,7 +114,7 @@ void m_transform_lines(TRANSFORM *transform, GArray *lines)
   }
 }
 
-/** \brief Transforms a point
+/*! \brief Transforms a point
  *
  *  \param x [inout] The x coordinate to transform.
  *  \param y [inout] The y coordinate to transform.
@@ -136,7 +136,7 @@ void m_transform_point(TRANSFORM *transform, gint *x, gint *y)
   *y = round(transform->m[1][0] * tx + transform->m[1][1] * ty + transform->m[1][2]);
 }
 
-/** \brief Transforms a polyline or polygon
+/*! \brief Transforms a polyline or polygon
  *
  *  \param transform [in] The transform function.
  *  \param points [inout] The GArray of sPOINT to transform.
@@ -154,7 +154,7 @@ void m_transform_points(TRANSFORM *transform, GArray *points)
   }
 }
 
-/** \brief Adds a rotation to the transformation
+/*! \brief Adds a rotation to the transformation
  *
  *  \param transform [inout] The given matrix
  *  \param angle [in] The angle to rotate
@@ -176,7 +176,7 @@ void m_transform_rotate(TRANSFORM *transform, gdouble angle)
   transform->m[1][1] = temp.m[1][0] * -s + temp.m[1][1] * c;
 }
 
-/** \brief Adds a scaling to the transformation
+/*! \brief Adds a scaling to the transformation
  *
  *  \param transform [inout] The given matrix
  *  \param factor [in] The amount to scale the transform.  This parameter must
@@ -193,7 +193,7 @@ void m_transform_scale(TRANSFORM *transform, gdouble factor)
   transform->m[1][1] *= factor;
 }
 
-/** \brief Adds a translation to the transformation
+/*! \brief Adds a translation to the transformation
  *
  *  \param transform [inout] The given matrix.
  *  \param dx [in] The amount to translate on the x axis.




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs