예제 #1
0
VBoolean VWriteGraphs (FILE *file, VAttrList attrs,
		       int n, VGraph graphs[])
{
  return VWriteObjects(file, VGraphRepn, attrs, n, (VPointer *)graphs);
}
예제 #2
0
파일: Edges.c 프로젝트: Rollmops/via
VBoolean VWriteEdges (FILE *file, VAttrList attributes,
		      int nedge_sets, VEdges edge_sets[])
{
    return VWriteObjects (file, VEdgesRepn, attributes, nedge_sets,
			  (VPointer *) edge_sets);
}
예제 #3
0
VBoolean VWriteImages (FILE *file, VAttrList attributes,
		       int nimages, VImage images[])
{
  return VWriteObjects (file, VImageRepn, attributes, nimages,
			(VPointer *) images);
}