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/makesdna')
-rw-r--r--source/blender/makesdna/DNA_armature_types.h7
-rw-r--r--source/blender/makesdna/DNA_freestyle_types.h2
-rw-r--r--source/blender/makesdna/DNA_ipo_types.h2
-rw-r--r--source/blender/makesdna/DNA_linestyle_types.h8
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h2
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h10
-rw-r--r--source/blender/makesdna/DNA_scene_types.h4
7 files changed, 20 insertions, 15 deletions
diff --git a/source/blender/makesdna/DNA_armature_types.h b/source/blender/makesdna/DNA_armature_types.h
index f397b7f27b4..454d843112a 100644
--- a/source/blender/makesdna/DNA_armature_types.h
+++ b/source/blender/makesdna/DNA_armature_types.h
@@ -76,7 +76,12 @@ typedef struct Bone {
/** dist, weight: for non-deformgroup deforms. */
float dist, weight;
- /** width: for block bones. keep in this order, transform!. */
+ /**
+ * The width for block bones.
+ *
+ * \note keep in this order for transform code which stores a pointer to `xwidth`,
+ * accessing length and `zwidth` as offsets.
+ */
float xwidth, length, zwidth;
/**
* Radius for head/tail sphere, defining deform as well,
diff --git a/source/blender/makesdna/DNA_freestyle_types.h b/source/blender/makesdna/DNA_freestyle_types.h
index 884e11f3a8e..4d4fbaed29a 100644
--- a/source/blender/makesdna/DNA_freestyle_types.h
+++ b/source/blender/makesdna/DNA_freestyle_types.h
@@ -145,7 +145,7 @@ typedef struct FreestyleConfig {
int flags;
float sphere_radius;
float dkr_epsilon;
- /** In radians!. */
+ /** In radians. */
float crease_angle;
ListBase linesets;
diff --git a/source/blender/makesdna/DNA_ipo_types.h b/source/blender/makesdna/DNA_ipo_types.h
index 4f71a257877..e2fdd19232c 100644
--- a/source/blender/makesdna/DNA_ipo_types.h
+++ b/source/blender/makesdna/DNA_ipo_types.h
@@ -82,7 +82,7 @@ typedef struct IpoCurve {
char _pad0[2];
/** Minimum/maximum y-extents for curve. */
float ymin, ymax;
- /** ???. */
+ /** Unused since the first available revision. */
unsigned int bitmask;
/** Minimum/maximum values for sliders (in action editor). */
diff --git a/source/blender/makesdna/DNA_linestyle_types.h b/source/blender/makesdna/DNA_linestyle_types.h
index b154de4507e..d83e24c5117 100644
--- a/source/blender/makesdna/DNA_linestyle_types.h
+++ b/source/blender/makesdna/DNA_linestyle_types.h
@@ -382,7 +382,7 @@ typedef struct LineStyleGeometryModifier_PerlinNoise1D {
struct LineStyleModifier modifier;
float frequency, amplitude;
- /** In radians!. */
+ /** In radians. */
float angle;
unsigned int octaves;
int seed;
@@ -393,7 +393,7 @@ typedef struct LineStyleGeometryModifier_PerlinNoise2D {
struct LineStyleModifier modifier;
float frequency, amplitude;
- /** In radians!. */
+ /** In radians. */
float angle;
unsigned int octaves;
int seed;
@@ -463,7 +463,7 @@ typedef struct LineStyleGeometryModifier_2DTransform {
int pivot;
float scale_x, scale_y;
- /** In radians!. */
+ /** In radians. */
float angle;
float pivot_u;
float pivot_x, pivot_y;
@@ -483,7 +483,7 @@ typedef struct LineStyleThicknessModifier_Calligraphy {
struct LineStyleModifier modifier;
float min_thickness, max_thickness;
- /** In radians!. */
+ /** In radians. */
float orientation;
char _pad[4];
} LineStyleThicknessModifier_Calligraphy;
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index c54c086affd..b59ea838719 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -175,7 +175,7 @@ typedef struct Mesh {
struct Mesh *texcomesh;
/* When the object is available, the preferred access method is: BKE_editmesh_from_object(ob) */
- /** Not saved in file!. */
+ /** Not saved in file. */
struct BMEditMesh *edit_mesh;
struct CustomData vdata, edata, fdata;
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 99c346bf589..f66de378c35 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -952,7 +952,7 @@ typedef struct MeshDeformModifierData {
MDefCell *dyngrid;
/** Dynamic binding vertex influences. */
MDefInfluence *dyninfluences;
- /** Is this vertex bound or not?. */
+ /** Is this vertex bound or not? */
int *dynverts;
/** Size of the dynamic bind grid. */
int dyngridsize;
@@ -1469,7 +1469,7 @@ typedef struct WeightVGEditModifierData {
float default_weight;
/* Mapping stuff. */
- /** The custom mapping curve!. */
+ /** The custom mapping curve. */
struct CurveMapping *cmap_curve;
/* The add/remove vertices weight thresholds. */
@@ -1543,7 +1543,7 @@ typedef struct WeightVGMixModifierData {
struct Object *mask_tex_map_obj;
/** Name of the map bone. */
char mask_tex_map_bone[64];
- /** How to map the texture!. */
+ /** How to map the texture. */
int mask_tex_mapping;
/** Name of the UV map. MAX_CUSTOMDATA_LAYER_NAME. */
char mask_tex_uvlayer_name[64];
@@ -1601,7 +1601,7 @@ typedef struct WeightVGProximityModifierData {
char defgrp_name[64];
/* Mapping stuff. */
- /** The custom mapping curve!. */
+ /** The custom mapping curve. */
struct CurveMapping *cmap_curve;
/* Proximity modes. */
@@ -1626,7 +1626,7 @@ typedef struct WeightVGProximityModifierData {
struct Object *mask_tex_map_obj;
/** Name of the map bone. */
char mask_tex_map_bone[64];
- /** How to map the texture!. */
+ /** How to map the texture. */
int mask_tex_mapping;
/** Name of the UV Map. MAX_CUSTOMDATA_LAYER_NAME. */
char mask_tex_uvlayer_name[64];
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 000db5bf5b1..05bd88acab0 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -734,7 +734,7 @@ typedef struct RenderData {
/* sequencer options */
char seq_prev_type;
- /** UNUSED!. */
+ /** UNUSED. */
char seq_rend_type;
/** Flag use for sequence render/draw. */
char seq_flag;
@@ -1535,7 +1535,7 @@ typedef struct ToolSettings {
typedef struct UnitSettings {
/* Display/Editing unit options for each scene */
- /** Maybe have other unit conversions?. */
+ /** Maybe have other unit conversions? */
float scale_length;
/** Imperial, metric etc. */
char system;