| | |
| | | if ((!xmlStrcmp(child->name, (const xmlChar *)"tria"))){ |
| | | parseTrisurfTria(vesicle, doc, child); |
| | | } |
| | | if ((!xmlStrcmp(child->name, (const xmlChar *)"trianeigh"))){ |
| | | parseTrisurfTriaNeigh(vesicle, doc, child); |
| | | } |
| | | if ((!xmlStrcmp(child->name, (const xmlChar *)"tristar"))){ |
| | | parseTrisurfTristar(vesicle, doc, child); |
| | | } |
| | |
| | | } |
| | | |
| | | |
| | | ts_bool parseTrisurfTriaNeigh(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur){ |
| | | xmlChar *triangles; |
| | | char *tria; |
| | | char *ntria[3]; |
| | | ts_uint i,j; |
| | | triangles = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); |
| | | tria=(char *)triangles; |
| | | for(i=0;i<3;i++) ntria[i]=strtok(tria," "); |
| | | j=0; |
| | | while(ntria[2]!=NULL){ |
| | | triangle_add_neighbour(vesicle->tlist->tria[j],vesicle->tlist->tria[atoi(ntria[0])]); |
| | | triangle_add_neighbour(vesicle->tlist->tria[j],vesicle->tlist->tria[atoi(ntria[1])]); |
| | | triangle_add_neighbour(vesicle->tlist->tria[j],vesicle->tlist->tria[atoi(ntria[2])]); |
| | | j++; |
| | | for(i=0;i<3;i++) ntria[i]=strtok(NULL," "); |
| | | } |
| | | fprintf(stderr,"Parsing triangle neighbors j=%d\n",j); |
| | | |
| | | xmlFree(triangles); |
| | | return TS_SUCCESS; |
| | | } |
| | | |
| | | |
| | | ts_bool parseTrisurfTristar(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur){ |
| | | |
| | | xmlChar *chari; |
| | |
| | | ts_vesicle *parseTrisurfTag(xmlDocPtr doc, xmlNodePtr cur); |
| | | ts_bool parseTrisurfVtxn(ts_vertex_list *vlist, xmlDocPtr doc, xmlNodePtr cur); |
| | | ts_bool parseTrisurfTria(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur); |
| | | ts_bool parseTrisurfTriaNeigh(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur); |
| | | ts_bool parseTrisurfTristar(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur); |
| | | ts_bool parseXMLVertexPosition(ts_vesicle *vesicle,xmlDocPtr doc, xmlNodePtr cur); |
| | | ts_bool parseXMLBonds(ts_vesicle *vesicle,xmlDocPtr doc, xmlNodePtr cur); |
| | | |
| | | #endif |