diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2008-05-01 06:00:04 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2008-05-01 06:00:04 +0000 |
| commit | 5560f5845f9ec804e1c540eb9c5dc15ca515e9af (patch) | |
| tree | 211203aa878f5aefd3704ff338c50ace3e15086b /src/live_effects | |
| parent | Added grid_polar.inx and grid_polar.py, to integrate new extension - LP #224522. (diff) | |
| download | inkscape-5560f5845f9ec804e1c540eb9c5dc15ca515e9af.tar.gz inkscape-5560f5845f9ec804e1c540eb9c5dc15ca515e9af.zip | |
Warning and whitespace cleanup
(bzr r5564)
Diffstat (limited to 'src/live_effects')
| -rw-r--r-- | src/live_effects/effect.cpp | 6 | ||||
| -rw-r--r-- | src/live_effects/lpe-spiro.cpp | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 066b91797..40813041c 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -147,7 +147,7 @@ Effect::getName() } void -Effect::doBeforeEffect (SPLPEItem *lpeitem) +Effect::doBeforeEffect (SPLPEItem */*lpeitem*/) { //Do nothing for simple effects } @@ -246,7 +246,7 @@ Effect::readallParameters(Inkscape::XML::Node * repr) const gchar * value = repr->attribute(key); if (value) { bool accepted = param->param_readSVGValue(value); - if (!accepted) { + if (!accepted) { g_warning("Effect::readallParameters - '%s' not accepted for %s", value, key); } } else { @@ -266,7 +266,7 @@ Effect::setParameter(const gchar * key, const gchar * new_value) if (param) { if (new_value) { bool accepted = param->param_readSVGValue(new_value); - if (!accepted) { + if (!accepted) { g_warning("Effect::setParameter - '%s' not accepted for %s", new_value, key); } } else { diff --git a/src/live_effects/lpe-spiro.cpp b/src/live_effects/lpe-spiro.cpp index 9ecb3eaf0..8708d091c 100644 --- a/src/live_effects/lpe-spiro.cpp +++ b/src/live_effects/lpe-spiro.cpp @@ -19,7 +19,7 @@ typedef struct { int is_open; } bezctx_ink; -void bezctx_ink_moveto(bezctx *bc, double x, double y, int is_open) +void bezctx_ink_moveto(bezctx *bc, double x, double y, int /*is_open*/) { bezctx_ink *bi = (bezctx_ink *) bc; sp_curve_moveto(bi->curve, x, y); @@ -140,7 +140,7 @@ LPESpiro::doEffect(SPCurve * curve) // this point is not last, so makes sense to find a proper type for it NArtBpath *next = NULL; if (ib < len && (bpath[ib+1].code == NR_END || bpath[ib+1].code == NR_MOVETO_OPEN || bpath[ib+1].code == NR_MOVETO)) { // end of subpath - if (closed) + if (closed) next = first_in_subpath; } else { if (ib < len) @@ -149,22 +149,22 @@ LPESpiro::doEffect(SPCurve * curve) next = first_in_subpath; } if (next) { - bool this_is_line = bpath[ib].code == NR_LINETO || + bool this_is_line = bpath[ib].code == NR_LINETO || (NR::L2(NR::Point(bpath[ib].x3, bpath[ib].y3) - NR::Point(bpath[ib].x2, bpath[ib].y2)) < 0.001); - bool next_is_line = next->code == NR_LINETO || + bool next_is_line = next->code == NR_LINETO || (NR::L2(NR::Point(bpath[ib].x3, bpath[ib].y3) - NR::Point(next->x1, next->y1)) < 0.001); double this_angle = NR_HUGE; if (this_is_line) { this_angle = atan2 (bpath[ib].x3 - pt[NR::X], bpath[ib].y3 - pt[NR::Y]); } else if (bpath[ib].code == NR_CURVETO) { this_angle = atan2 (bpath[ib].x3 - bpath[ib].x2, bpath[ib].y3 - bpath[ib].y2); - } + } double next_angle = NR_HUGE; if (next_is_line) { next_angle = atan2 (next->x3 - bpath[ib].x3, next->y3 - bpath[ib].y3); } else if (next->code == NR_CURVETO) { next_angle = atan2 (next->x1 - bpath[ib].x3, next->y1 - bpath[ib].y3); - } + } if (this_angle != NR_HUGE && next_angle != NR_HUGE && fabs(this_angle - next_angle) < 0.001) { if (this_is_line && !next_is_line) { path[ip].ty = ']'; |
