Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-03-17 19:40:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-17 22:40:18 +0400
commitec4e12d9a2f080aa7dfdd7375288f1804de1224d (patch)
treea40c06a7c5c56850328a80f71c8c5e39ddb04cd0 /source/blender/blenlib/intern/polyfill2d.c
parent7227117bed952eda1146ad52493f45bb80bb79ee (diff)
Code cleanup: comments and typos
Diffstat (limited to 'source/blender/blenlib/intern/polyfill2d.c')
-rw-r--r--source/blender/blenlib/intern/polyfill2d.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenlib/intern/polyfill2d.c b/source/blender/blenlib/intern/polyfill2d.c
index 9168d2f3228..0b1b461ff73 100644
--- a/source/blender/blenlib/intern/polyfill2d.c
+++ b/source/blender/blenlib/intern/polyfill2d.c
@@ -368,11 +368,11 @@ static unsigned int pf_index_next(const PolyFill *pf, unsigned index)
}
/**
-* Triangulates the given (convex or concave) simple polygon to a list of triangle vertices.
-* \param vertices pairs describing vertices of the polygon, in either clockwise or counterclockwise order.
-* \return triples of triangle indices in clockwise order.
-* Note the returned array is reused for later calls to the same method.
-*/
+ * Triangulates the given (convex or concave) simple polygon to a list of triangle vertices.
+ * \param vertices pairs describing vertices of the polygon, in either clockwise or counterclockwise order.
+ * \return triples of triangle indices in clockwise order.
+ * Note the returned array is reused for later calls to the same method.
+ */
void BLI_polyfill_calc_ex(
const float (*coords)[2],
const unsigned int coords_tot,