Add SVG support

This commit is contained in:
hooper114 2009-02-17 17:48:39 +00:00
parent 0feb6152d6
commit b151e526f4
5 changed files with 738 additions and 6 deletions

View file

@ -149,3 +149,18 @@ int is_stackable(int symbology) {
return 0;
}
int roundup(float input)
{
float remainder;
int integer_part;
integer_part = (int)input;
remainder = input - integer_part;
if(remainder > 0.1) {
integer_part++;
}
return integer_part;
}