From: buliabyak Date: Thu, 18 May 2006 21:27:19 +0000 (+0000) Subject: make profile selectable via prefs, add elliptic (preliminary, needs perpendicular... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=08d8379fd438f64aa784b212148c83003bfe0145;p=inkscape.git make profile selectable via prefs, add elliptic (preliminary, needs perpendicular displacement too) --- diff --git a/src/nodepath.cpp b/src/nodepath.cpp index 2e5b24c62..46f1095ac 100644 --- a/src/nodepath.cpp +++ b/src/nodepath.cpp @@ -998,14 +998,20 @@ curve; the parameter alpha determines how blunt (alpha > 1) or sharp (alpha < 1) near x = 0. */ double -sculpt_profile (double x, double alpha) +sculpt_profile (double x, double alpha, guint profile) { if (x >= 1) return 0; - if (prefs_get_int_attribute("tools.nodes", "sculpt_profile_linear", 0) == 1) { + if (x <= 0) + return 1; + + switch (profile) { + case SCULPT_PROFILE_LINEAR: return 1 - x; - } else { + case SCULPT_PROFILE_BELL: return (0.5 * cos (M_PI * (pow(x, alpha))) + 0.5); + case SCULPT_PROFILE_ELLIPTIC: + return sqrt(1 - x*x); } } @@ -1049,6 +1055,8 @@ sp_nodepath_selected_nodes_sculpt(Inkscape::NodePath::Path *nodepath, Inkscape:: if (pressure > 0.5) alpha = 1/alpha; + guint profile = prefs_get_int_attribute("tools.nodes", "sculpting_profile", SCULPT_PROFILE_BELL); + if (sp_nodepath_selection_get_subpath_count(nodepath) <= 1) { // Only one subpath has selected nodes: // use linear mode, where the distance from n to node being dragged is calculated along the path @@ -1117,9 +1125,9 @@ sp_nodepath_selected_nodes_sculpt(Inkscape::NodePath::Path *nodepath, Inkscape:: n_range += bezier_length (n_node->p.other->origin, n_node->p.other->n.origin, n_node->p.origin, n_node->origin); if (n_node->selected) { sp_nodepath_move_node_and_handles (n_node, - sculpt_profile (n_range / n_sel_range, alpha) * delta, - sculpt_profile ((n_range + NR::L2(n_node->n.origin - n_node->origin)) / n_sel_range, alpha) * delta, - sculpt_profile ((n_range - NR::L2(n_node->p.origin - n_node->origin)) / n_sel_range, alpha) * delta); + sculpt_profile (n_range / n_sel_range, alpha, profile) * delta, + sculpt_profile ((n_range + NR::L2(n_node->n.origin - n_node->origin)) / n_sel_range, alpha, profile) * delta, + sculpt_profile ((n_range - NR::L2(n_node->p.origin - n_node->origin)) / n_sel_range, alpha, profile) * delta); } if (n_node == p_node) { n_going = false; @@ -1134,9 +1142,9 @@ sp_nodepath_selected_nodes_sculpt(Inkscape::NodePath::Path *nodepath, Inkscape:: p_range += bezier_length (p_node->n.other->origin, p_node->n.other->p.origin, p_node->n.origin, p_node->origin); if (p_node->selected) { sp_nodepath_move_node_and_handles (p_node, - sculpt_profile (p_range / p_sel_range, alpha) * delta, - sculpt_profile ((p_range - NR::L2(p_node->n.origin - p_node->origin)) / p_sel_range, alpha) * delta, - sculpt_profile ((p_range + NR::L2(p_node->p.origin - p_node->origin)) / p_sel_range, alpha) * delta); + sculpt_profile (p_range / p_sel_range, alpha, profile) * delta, + sculpt_profile ((p_range - NR::L2(p_node->n.origin - p_node->origin)) / p_sel_range, alpha, profile) * delta, + sculpt_profile ((p_range + NR::L2(p_node->p.origin - p_node->origin)) / p_sel_range, alpha, profile) * delta); } if (p_node == n_node) { n_going = false; @@ -1172,9 +1180,9 @@ sp_nodepath_selected_nodes_sculpt(Inkscape::NodePath::Path *nodepath, Inkscape:: if (node->selected) { if (direct_range > 1e-6) { sp_nodepath_move_node_and_handles (node, - sculpt_profile (NR::L2(node->origin - n->origin) / direct_range, alpha) * delta, - sculpt_profile (NR::L2(node->n.origin - n->origin) / direct_range, alpha) * delta, - sculpt_profile (NR::L2(node->p.origin - n->origin) / direct_range, alpha) * delta); + sculpt_profile (NR::L2(node->origin - n->origin) / direct_range, alpha, profile) * delta, + sculpt_profile (NR::L2(node->n.origin - n->origin) / direct_range, alpha, profile) * delta, + sculpt_profile (NR::L2(node->p.origin - n->origin) / direct_range, alpha, profile) * delta); } else { sp_nodepath_move_node_and_handles (node, delta, delta, delta); } diff --git a/src/nodepath.h b/src/nodepath.h index 2b8243f5b..10e241b6a 100644 --- a/src/nodepath.h +++ b/src/nodepath.h @@ -233,6 +233,12 @@ class Node { } // namespace NodePath } // namespace Inkscape +enum { + SCULPT_PROFILE_LINEAR, + SCULPT_PROFILE_BELL, + SCULPT_PROFILE_ELLIPTIC +}; + // Do function documentation in nodepath.cpp Inkscape::NodePath::Path * sp_nodepath_new (SPDesktop * desktop, SPItem * item, bool show_handles); void sp_nodepath_destroy (Inkscape::NodePath::Path * nodepath); diff --git a/src/preferences-skeleton.h b/src/preferences-skeleton.h index d709173d8..830e0fa76 100644 --- a/src/preferences-skeleton.h +++ b/src/preferences-skeleton.h @@ -63,7 +63,7 @@ static char const preferences_skeleton[] = " usepressure=\"0\" usetilt=\"0\" keep_selected=\"1\"/>\n" " \n" -" \n" +" \n" " \n" " \n" " \n"