static void report_extrusion_data(tag_t feature)
{
logical
region_specified,
solid_creation;
int
n_objects;
tag_t
*objects;
double
direction[3],
region_point[3];
char
*limits[2],
*offsets[2],
*taper_angle;
UF_MODL_SWEEP_TRIM_object_p_t
trim_ptr;
if (UF_CALL(UF_MODL_ask_extrusion(feature, &n_objects, &objects,
&trim_ptr, &taper_angle, limits, offsets, region_point,
®ion_specified, &solid_creation, direction))) return;
} |