From 6a7d86ec73c5212c52d76d9ddcb2023fc535b814 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 14 Feb 2015 12:15:23 +0100 Subject: Drop density estimator First of all, it does not look too pretty. But more importantly now we can reduce the bucket size to four (instead of five) and vectorize that stuff. --- parser.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'parser.c') diff --git a/parser.c b/parser.c index 1952dec..d27bbe1 100644 --- a/parser.c +++ b/parser.c @@ -471,12 +471,6 @@ int parse_flame_element(xmlNode *flame_node, flam3_genome *loc_current_cp, cp->vibrancy = flam3_atof(att_str); } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"hue")) { cp->hue_rotation = fmod(flam3_atof(att_str), 1.0); - } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"estimator_radius")) { - cp->estimator = flam3_atof(att_str); - } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"estimator_minimum")) { - cp->estimator_minimum = flam3_atof(att_str); - } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"estimator_curve")) { - cp->estimator_curve = flam3_atof(att_str); } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"gamma_threshold")) { cp->gam_lin_thresh = flam3_atof(att_str); } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"soloxform")) { -- cgit v1.2.3