GENLIB_HEIGHT.3alc - Man Page

compute the height of a model

Synopsis

#include <genlib.h>
long GENLIB_HEIGHT(cellname)
char ∗cellname;

Parameters

cellname

Name of the cell which height is needed

Description

HEIGHT looks for the figure called cellname on memory, and then on disk. When found, the figure abutment box height is calculated, and returned.

Return Value

HEIGHT returns a long int being the cell abutment box height.

Example

#include <genlib.h>
long cellHeight;
main()
{
	cellHeight = GENLIB_HEIGHT("mycell");
	GENLIB_DEF_PHFIG("grumf_z");
	GENLIB_PLACE("na2_y","ins1", NOSYM, 3 * cellHeight, 0L);
	/∗ Save all that on disk ∗/
	GENLIB_DEF_AB(0L, 0L, 0L, 0L);
	GENLIB_SAVE_PHFIG();
}

See Also

genlib(1), GENLIB_WIDTH(3).

Referenced By

genlib.1alc(1).

ASIM/LIP6 PROCEDURAL GENERATION LANGUAGE