/*   -*- coding: utf-8 -*-  */

#ifndef _DILIB_SVG_PATH_H
#define _DILIB_SVG_PATH_H

#include "SxmlNode.h"

double SvgPathCommandX(SxmlNode *command);
double SvgPathCommandY(SxmlNode *command);
double SvgPathCommandItem(SxmlNode *command, char *codeItem);

double SvgPathCommandSetItem(SxmlNode *command, char *codeItem, double d1);
double SvgPathCommandSetX(SxmlNode *command, double d1);
double SvgPathCommandSetY(SxmlNode *command, double d1);

#endif /* _DILIB_SVG_PATH_H */
