From 5f5b35889bf83e4605bab13a56a9c72b868e6e3f Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 8 Aug 2007 07:14:27 +0000 Subject: Added comments documenting a few variables in the DNA_curve_types.h structs --- source/blender/makesdna/DNA_curve_types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/makesdna/DNA_curve_types.h') diff --git a/source/blender/makesdna/DNA_curve_types.h b/source/blender/makesdna/DNA_curve_types.h index 8e464f83716..8dc284888d7 100644 --- a/source/blender/makesdna/DNA_curve_types.h +++ b/source/blender/makesdna/DNA_curve_types.h @@ -91,15 +91,15 @@ typedef struct BevPoint { typedef struct BezTriple { float vec[3][3]; float alfa, weight, radius; /* alfa: tilt in 3D View, weight: used for softbody goal weight, radius: for bevel tapering */ - short h1, h2; - char f1, f2, f3, hide; + short h1, h2; /* h1, h2: the handle type of the two handles */ + char f1, f2, f3, hide; /* f1, f2, f3: used for selection status, hide: used to indicate whether BezTriple is hidden */ } BezTriple; /* note; alfa location in struct is abused by Key system */ typedef struct BPoint { float vec[4]; float alfa, weight; /* alfa: tilt in 3D View, weight: used for softbody goal weight */ - short f1, hide; + short f1, hide; /* f1: selection status, hide: is point hidden or not */ float radius, pad; /* user-set radius per point for bevelling etc */ } BPoint; -- cgit v1.2.3