add the tiger svg element

This commit is contained in:
Edouard Dupin 2012-03-27 18:30:59 +02:00
parent fb6392be3e
commit d05f8d6e67
2 changed files with 441 additions and 1 deletions

439
assets/tiger.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 88 KiB

View File

@ -399,6 +399,7 @@ static MainWindows * basicWindows = NULL;
const char * listTestSVG[] = { const char * listTestSVG[] = {
"lion.svg", "lion.svg",
"tiger.svg",
"01_rectangle.svg", "01_rectangle.svg",
"02_rectangle.svg", "02_rectangle.svg",
"03_rectangle.svg", "03_rectangle.svg",
@ -488,7 +489,7 @@ void APP_Init(void)
svgFile.SetCompleateName(tmpString, etk::FILE_TYPE_DATA); svgFile.SetCompleateName(tmpString, etk::FILE_TYPE_DATA);
mySVGElement = new svg::Parser(svgFile); mySVGElement = new svg::Parser(svgFile);
if (NULL != mySVGElement) { if (NULL != mySVGElement) {
mySVGElement->DisplayDebug(); //mySVGElement->DisplayDebug();
mySVGElement->GenerateTestFile(); mySVGElement->GenerateTestFile();
delete(mySVGElement); delete(mySVGElement);
} }