/* Authors:
* Johan Engelen
*
* Copyright (C) 2010-2012 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "spiro-converters.h"
#include <glib.h>
#else
# define SPIRO_G_MESSAGE(x)
#endif
namespace Spiro {
void
{
} else {
SPIRO_G_MESSAGE("Spiro: moveto not finite");
}
}
void
{
if (close_last) {
}
} else {
SPIRO_G_MESSAGE("Spiro: lineto not finite");
}
}
void
{
if (close_last) {
}
} else {
SPIRO_G_MESSAGE("Spiro: quadto not finite");
}
}
void
ConverterSPCurve::curveto(double x1, double y1, double x2, double y2, double x3, double y3, bool close_last)
{
if (close_last) {
}
} else {
SPIRO_G_MESSAGE("Spiro: curveto not finite");
}
}
{
_path.setStitching(true);
}
void
{
} else {
SPIRO_G_MESSAGE("spiro moveto not finite");
}
}
void
{
} else {
SPIRO_G_MESSAGE("spiro lineto not finite");
}
}
void
{
} else {
SPIRO_G_MESSAGE("spiro quadto not finite");
}
}
void
ConverterPath::curveto(double x1, double y1, double x2, double y2, double x3, double y3, bool close_last)
{
} else {
SPIRO_G_MESSAGE("spiro curveto not finite");
}
}
} // namespace Spiro
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :