Daylight v4.9 Release Date: 1 February 2008 Namedt_alloc_conformation - allocate a new conformation objectGeneric Prototypedt_alloc_conformation(dt_Handle) => dt_HandleC Prototype#include "dt_depict.h"dt_Handle dt_alloc_conformation(dt_Handle object) FORTRAN Prototypeinclude 'dt_f_depict.inc'integer*4 dt_f_alloc_conformation(object) integer*4 object DescriptionAllocates a new conformation object for the given molecule or reaction. All (x, y, z) coordinates of the new conformation are set to 0. Note that there is no theoretical limit to the number of conformations which may be created for a single molecule or reaction.Each conformation has 'object' as its base object (see dt_base(3)). If the base object is deallocated, the conformation object will automatically be deallocated and its handle will be revoked. Unlike depictions, conformation objects are NOT deallocated when their base objects are modified. Return ValueReturns the handle of a new conformation object, or NULL_OB if 'object' is not a molecule or reaction object.Related Topicsdt_alloc_depiction(3) dt_base(3) |