|
NAMErflattenphfig - recursivly flatten a figure See the file man1/alc_origin.1. SYNOPSIS#include "mph.h" void rflattenphfig(ptfig, concat, catal) phfig_list ∗ptfig; char concat; char catal; PARAMETERSDESCRIPTIONrflattenphfig recursivly flattens all the instances of the
figure pointed to by ptfig.
ERRORSNo errors can directly result from a call to rflattenphfig, but since it uses many other mbk functions, it may be a good error starting point. EXAMPLE
#include "mph.h"
void flatten_my_amd2901()
{
phins_list ∗pt;
pt = getphfig("my_amd2901", 'A');
rflattenphfig(pt, YES, YES);
pt->NAME = "my_flattened_amd2901";
savephfig(pt);
}
SEE ALSOmbk(1), incatalog(3), mbkenv(3), phfig(3), addphfig(3), getphfig(3), delphfig(3), loadphfig(3), savephfig(3), flattenphfig(3), MBK_CATAL_NAME(1). See the file man1/alc_bug_report.1.
|