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:
Diffstat (limited to 'source/blender/freestyle/intern/stroke/ContextFunctions.h')
-rw-r--r--source/blender/freestyle/intern/stroke/ContextFunctions.h35
1 files changed, 18 insertions, 17 deletions
diff --git a/source/blender/freestyle/intern/stroke/ContextFunctions.h b/source/blender/freestyle/intern/stroke/ContextFunctions.h
index 9e3c2f24995..190217c52f7 100644
--- a/source/blender/freestyle/intern/stroke/ContextFunctions.h
+++ b/source/blender/freestyle/intern/stroke/ContextFunctions.h
@@ -17,9 +17,10 @@
#ifndef __FREESTYLE_CONTEXT_FUNCTIONS_H__
#define __FREESTYLE_CONTEXT_FUNCTIONS_H__
-/** \file \ingroup freestyle
- * \brief Functions related to context queries
- * \brief Interface to access the context related information.
+/** \file
+ * \ingroup freestyle
+ * \brief Functions related to context queries
+ * \brief Interface to access the context related information.
*/
#include "Canvas.h"
@@ -58,40 +59,40 @@ void LoadMapCF(const char *iFileName, const char *iMapName, unsigned iNbLevels =
// ReadMapPixel
/*! Reads a pixel in a user-defined map
- * \return the floating value stored for that pixel
- * \param iMapName:
+ * \return the floating value stored for that pixel
+ * \param iMapName:
* The name of the map
- * \param level:
+ * \param level:
* The level of the pyramid in which we wish to read the pixel
- * \param x:
+ * \param x:
* The x-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
- * \param y:
+ * \param y:
* The y-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
*/
float ReadMapPixelCF(const char *iMapName, int level, unsigned x, unsigned y);
// ReadCompleteViewMapPixel
/*! Reads a pixel in the complete view map
- * \return the floating value stored for that pixel
- * \param level:
+ * \return the floating value stored for that pixel
+ * \param level:
* The level of the pyramid in which we wish to read the pixel
- * \param x:
+ * \param x:
* The x-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
- * \param y:
+ * \param y:
* The y-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
*/
float ReadCompleteViewMapPixelCF(int level, unsigned x, unsigned y);
// ReadOrientedViewMapPixel
/*! Reads a pixel in one of the oriented view map images
- * \return the floating value stored for that pixel
- * \param iOrientation:
+ * \return the floating value stored for that pixel
+ * \param iOrientation:
* The number telling which orientation we want to check
- * \param level:
+ * \param level:
* The level of the pyramid in which we wish to read the pixel
- * \param x:
+ * \param x:
* The x-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
- * \param y:
+ * \param y:
* The y-coordinate of the pixel we wish to read. The origin is in the lower-left corner.
*/
float ReadDirectionalViewMapPixelCF(int iOrientation, int level, unsigned x, unsigned y);