}
}
void
-Svg_parser::build_Vertex(xmlpp::Element* root , Vertex *p){
+Svg_parser::build_vertex(xmlpp::Element* root , Vertex *p){
xmlpp::Element *child_comp=root->add_child("composite");
child_comp->set_attribute("type","bline_point");
build_vector (child_comp->add_child("param"),"point",p->x,p->y);
if(!blineguid.empty()) child->set_attribute("guid",blineguid);
std::list<Vertex*>::iterator aux = p.begin();
while(aux!=p.end()){
- if(*aux) build_Vertex (child->add_child("entry"),*aux);
+ if(*aux) build_vertex (child->add_child("entry"),*aux);
aux++;
}
}
void build_rotate(xmlpp::Element* root,float dx,float dy,float angle);
void build_translate(xmlpp::Element* root,float dx,float dy);
void build_points(xmlpp::Element* root,std::list<Vertex*> p);
- void build_Vertex(xmlpp::Element* root , Vertex *p);
- void build_bline(xmlpp::Element* root,std::list<Vertex*> p,bool loop,String blinegui);
+ void build_vertex(xmlpp::Element* root , Vertex *p);
+ void build_bline(xmlpp::Element* root,std::list<Vertex*> p,bool loop,String blineguid);
void build_param (xmlpp::Element* root,String name,String type,String value);
void build_param (xmlpp::Element* root,String name,String type,float value);
void build_param (xmlpp::Element* root,String name,String type,int value);