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-05-03 17:43:36 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-03 17:45:17 +0400
commit48c1a7f8a45f1474c1484950687f0f30612a1731 (patch)
tree89cef975fc80494592336dad4b383ecdc438dbdd /source/blender/render
parent38b997991980558cda1a58e5da68c3c5fe58fddb (diff)
Doxy cleanup: formatting
Diffstat (limited to 'source/blender/render')
-rw-r--r--source/blender/render/intern/source/bake_api.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/source/blender/render/intern/source/bake_api.c b/source/blender/render/intern/source/bake_api.c
index 7ad07e2aaf4..591e9f01578 100644
--- a/source/blender/render/intern/source/bake_api.c
+++ b/source/blender/render/intern/source/bake_api.c
@@ -30,7 +30,7 @@
*
* The Bake API is fully implemented with Python rna functions. The operator expects/call a function:
*
- * def bake(scene, object, pass_type, pixel_array, num_pixels, depth, result)
+ * ``def bake(scene, object, pass_type, pixel_array, num_pixels, depth, result)``
* - scene: current scene (Python object)
* - object: object to render (Python object)
* - pass_type: pass to render (string, e.g., "COMBINED", "AO", "NORMAL", ...)
@@ -44,19 +44,21 @@
* \subsection bake_pixel BakePixel data structure
*
* pixel_array is a Python object storing BakePixel elements:
-
+ *
+ * <pre>
* struct BakePixel {
* int primitive_id;
- * float u, v;
- * float dudx, dudy;
- * float dvdx, dvdy;
+ * float uv[2];
+ * float du_dx, du_dy;
+ * float dv_dx, dv_dy;
* };
+ * </pre>
*
* In python you have access to:
- * - primitive_id, u, v, du_dx, du_dy, next
- * - next() is a function that returns the next BakePixel in the array.
+ * - ``primitive_id``, ``uv``, ``du_dx``, ``du_dy``, ``next``
+ * - ``next()`` is a function that returns the next #BakePixel in the array.
*
- * \note Pixels that should not be baked have primitive_id = -1
+ * \note Pixels that should not be baked have ``primitive_id == -1``
*
* For a complete implementation example look at the Cycles Bake commit.
*/