ADDPHINS(3) | MBK PHYSICAL FUNCTIONS | ADDPHINS(3) |
addphins - create a physical instance
See the file buster/alliance/alc_origin.1.en.gz.
#include "mph.h" phins_list ∗addphins(ptfig, figname, insname, sym, x, y) phfig_list ∗ptfig; char ∗figname; char ∗insname; char sym; long x, y;
addphins creates a new instance whose lower left corner is
at the given coordinates, and adds it to the list of instances pointed to by
ptfig->PHINS. The new instance is added in front of the list, and
becomes itself the list head.
The parameters figname, insname, sym, x and
y fill respectivly the FIGNAME, INSNAME, TRANSF,
XINS and YINS fields of the phins structure.
The addphins function does not check in memory or on disk to see if the
instanciated model exists, since no informations on it are needed.
The coordinates are not transformation dependant. It means that the
transformation is performed before placing the instance at the given point.
For details on the structure, see phins(3).
addphins returns a pointer to the newly created instance.
"∗∗∗ mbk error ∗∗∗ addphins figure figname cannot be part of itself"
"∗∗∗ mbk error ∗∗∗ illegal addphins transformation sym in : insname"
"∗∗∗ mbk error ∗∗∗ illegal addphins duplicate instance name : insname"
#include "mph.h" phins_list ∗ins_dup(pfd, pfs) /∗ duplicate instances ∗/ phfig_list ∗pfd, ∗pfs; { phins_list ∗pi; for (pi = pfs->phins; pi != NULL; pi = pi->NEXT) addphins(pfd, pi->FIGNAME, pi->INSNAME, pi->TRANSF,
pi->XINS, pi->YINS); return pfd->PHINS; }
mbk(1), phfig(3), phins(3), getphins(3), delphins(3).
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |