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:
authorNathan Letwory <nathan@letworyinteractive.com>2011-02-17 23:48:12 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2011-02-17 23:48:12 +0300
commit22dbae84e5ed0fa836f5f84faaeb51a7ec585c64 (patch)
tree14e0f62668c233eca4819ccd746e8d393f702ebf /source/blender/makesdna/DNA_vec_types.h
parent8bd04b4c6dae4dad2fa8142004860db564597ab2 (diff)
DNA header files are now grouped under the same module. No further documentation done.
Diffstat (limited to 'source/blender/makesdna/DNA_vec_types.h')
-rw-r--r--source/blender/makesdna/DNA_vec_types.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_vec_types.h b/source/blender/makesdna/DNA_vec_types.h
index b5e3dff7db9..2d7804c3d1d 100644
--- a/source/blender/makesdna/DNA_vec_types.h
+++ b/source/blender/makesdna/DNA_vec_types.h
@@ -1,6 +1,4 @@
-/**
- * vec_types.h dec 2000 Nzc
- *
+/*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK *****
@@ -32,12 +30,20 @@
#ifndef DNA_VEC_TYPES_H
#define DNA_VEC_TYPES_H
+/** \file DNA_vec_types.h
+ * \ingroup DNA
+ * \since dec-2000
+ * \author nzc
+ */
/* types */
+
+/** vector of two shorts. */
typedef struct vec2s {
short x, y;
} vec2s;
+/** vector of two floats. */
typedef struct vec2f {
float x, y;
} vec2f;
@@ -77,11 +83,13 @@ typedef struct vec4d {
} vec4d;
*/
+/** integer rectangle. */
typedef struct rcti {
int xmin, xmax;
int ymin, ymax;
} rcti;
+/** float rectangle. */
typedef struct rctf {
float xmin, xmax;
float ymin, ymax;