From 4edfc3a919482bd9738ae6503e96bdd8edf9a995 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Sun, 29 Aug 2004 09:21:52 +0000 Subject: Feature for Curve objects in Blender; 'tapering'. Next to the "BevOb" button you now have a "TaperOb" button to give a name of a curve object which defines the width of extrusion of the 'BevObj' along the curve. The TaperOb curve typically is horizontal, where the height denotes the width. Important rules; - Only the firste curve in TaperObj is evaluated - the first width is left, last width is right - it scales the width of normal extrusions based on evaluating the taper curve; which means sharp corners in taper curve won't be easily visible (That latter feature could be improved by extrusing based on the points in the taper curve; this is a *lot* more work) --- source/blender/makesdna/DNA_curve_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (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 24a627ec6a4..59e91fa861b 100644 --- a/source/blender/makesdna/DNA_curve_types.h +++ b/source/blender/makesdna/DNA_curve_types.h @@ -110,7 +110,7 @@ typedef struct Curve { ListBase nurb; ListBase disp; - struct Object *bevobj, *textoncurve; + struct Object *bevobj, *taperobj, *textoncurve; struct Ipo *ipo; Path *path; struct Key *key; -- cgit v1.2.3