/**
* 3x4 transformation matrix to map points from projective 3-space into the projective plane
*
* Authors:
* Maximilian Albert <Anhalter42@gmx.de>
*
* Copyright (C) 2007 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib.h>
#include "proj_pt.h"
#include "svg/stringstream.h"
namespace Proj {
if (!coord_str) {
pt[0] = 0.0;
g_warning ("Coordinate string is empty. Creating default Pt2\n");
return;
}
g_strfreev (coords);
g_warning ("Malformed coordinate string.\n");
return;
}
g_strfreev (coords);
}
void
return;
}
}
}
char *
}
if (!coord_str) {
pt[0] = 0.0;
g_warning ("Coordinate string is empty. Creating default Pt2\n");
return;
}
g_strfreev (coords);
g_warning ("Malformed coordinate string.\n");
return;
}
}
void
return;
}
char *
}
} // namespace Proj
/*
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:fileencoding=utf-8 :