File: backbone.c

package info (click to toggle)
garlic 1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 4,516 kB
  • sloc: ansic: 52,465; makefile: 2,254
file content (620 lines) | stat: -rw-r--r-- 16,908 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
/* Copyright (C) 2000-2002 Damir Zucic */

/*=============================================================================

				backbone.c

Purpose:
	Draw backbone.

Input:
	(1) Pointer to MolComplexS structure.
	(2) Number of macromolecular complexes.
	(3) Pointer to ConfigS structure, with configuration data.
	(4) Pointer to GUIS structure.
	(5) Pointer to NearestAtomS structure, with information about the
	    atom occupying the given pixel.
	(6) The number of pixels in the main window free area.
	(7) The refreshI, used to check the  NearestAtomS associated with
	    a given pixel.

Output:
	(1) Bonds drawn to the hidden pixmap.
	(2) Return value.

Return value:
	(1) The number of bonds drawn.

Notes:
	(1) Indentation is exceptionally 4 spaces.

	(2) This function includes all drawing styles.

=============================================================================*/

#include <stdio.h>
#include <stdlib.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

#include "defines.h"
#include "typedefs.h"

/*======function prototypes:=================================================*/

unsigned long	InterpolateColor_ (unsigned long, unsigned long, GUIS *);
void		AddTwoColors_ (unsigned long, unsigned long, GUIS *,
			       unsigned long *, unsigned long *);
void		AddThreeColors_ (unsigned long, unsigned long, GUIS *,
				 unsigned long *,
				 unsigned long *,
				 unsigned long *);
int		BondStyle1Quadrant1_ (Aux1S *, int);
int		BondStyle1Quadrant2_ (Aux1S *, int);
int		BondStyle1Quadrant3_ (Aux1S *, int);
int		BondStyle1Quadrant4_ (Aux1S *, int);
int		BondStyle2Quadrant1_ (Aux1S *, int);
int		BondStyle2Quadrant2_ (Aux1S *, int);
int		BondStyle2Quadrant3_ (Aux1S *, int);
int		BondStyle2Quadrant4_ (Aux1S *, int);
int		BondStyle3Quadrant1_ (Aux1S *, int);
int		BondStyle3Quadrant2_ (Aux1S *, int);
int		BondStyle3Quadrant3_ (Aux1S *, int);
int		BondStyle3Quadrant4_ (Aux1S *, int);
int		BondStyle4Quadrant1_ (Aux1S *, int);
int		BondStyle4Quadrant2_ (Aux1S *, int);
int		BondStyle4Quadrant3_ (Aux1S *, int);
int		BondStyle4Quadrant4_ (Aux1S *, int);
int		BondStyle5Quadrant1_ (Aux1S *, int);
int		BondStyle5Quadrant2_ (Aux1S *, int);
int		BondStyle5Quadrant3_ (Aux1S *, int);
int		BondStyle5Quadrant4_ (Aux1S *, int);

/*======draw backbone:=======================================================*/

size_t DrawBackbone_ (MolComplexS *mol_complexSP, int mol_complexesN,
		      ConfigS *configSP, GUIS *guiSP,
		      NearestAtomS *nearest_atomSP, size_t pixelsN,
		      unsigned int refreshI)
{
size_t			bonds_drawnN = 0;
int			imageI, imagesN;
Aux1S			aux1S;
int			mol_complexI;
MolComplexS		*curr_mol_complexSP;
size_t			c_alphaI, c_alphaN;
BackboneS		*curr_backboneSP;
AtomS			*curr_atomSP, *partner_atomSP;
unsigned long		color1ID, color2ID, color3ID;
unsigned long		color4ID, color5ID, color6ID;
double			z_shift, delta_z_sign;
int			screen_abs_delta_x, screen_abs_delta_y;
int			regionI;
int			styleI;
int			bondI;

/* Number of images: */
if (configSP->stereoF) imagesN = 2;
else imagesN = 1;

/* Prepare the auxiliary  Aux1S  structure,  used to */
/* reduce the number of arguments in function calls: */
aux1S.configSP = configSP;
aux1S.guiSP = guiSP;
aux1S.nearest_atomSP = nearest_atomSP;
aux1S.pixelsN = pixelsN;
aux1S.refreshI = refreshI;

/* Initialize  the bond  index.  The negative value */
/* means that backbone is not a true chemical bond: */
bondI = -1;

/* Scan each macromolecular complex: */
for (mol_complexI = 0; mol_complexI < mol_complexesN; mol_complexI++)
    {
    /* Pointer to current macromolecular complex: */
    curr_mol_complexSP = mol_complexSP + mol_complexI;

    /* Check the number of atoms (the complex may be discarded): */
    if (curr_mol_complexSP->atomsN == 0) continue;

    /* Prepare and check the number of CA atoms: */
    c_alphaN = curr_mol_complexSP->c_alphaN;
    if (c_alphaN == 0) continue;

    /* Copy the macromol. complex index into aux1S: */
    aux1S.mol_complexI = mol_complexI;

    /* Draw backbone for each CA atoms: */
    for (c_alphaI = 0; c_alphaI < c_alphaN; c_alphaI++)
	{
	/* Pointer to the current BackboneS structure: */
	curr_backboneSP = curr_mol_complexSP->backboneSP + c_alphaI;

	/* The current backbone element may be hidden: */
	if (curr_backboneSP->hiddenF) continue;

	/* Pointer to the current CA atom: */
	curr_atomSP = curr_mol_complexSP->atomSP + curr_backboneSP->c_alphaI;

	/* Check is atom inside slab: */
	if (!curr_atomSP->inside_slabF) continue;

	/* Check is atom inside window: */
	if (!curr_atomSP->inside_windowF) continue;

	/* Copy the style index: */
	styleI = curr_backboneSP->backbone_styleI;

	/* Prepare colors: */
	switch (styleI)
	    {
	    case 1:
		XSetForeground (guiSP->displaySP, guiSP->theGCA[0],
				curr_atomSP->left_colorID);
		aux1S.colorIDA[0] = curr_atomSP->left_colorID;
		break;

	    case 2:
		XSetForeground (guiSP->displaySP, guiSP->theGCA[0],
				curr_atomSP->left_colorID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[1],
				curr_atomSP->middle_colorID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[2],
				curr_atomSP->right_colorID);
		aux1S.colorIDA[0] = curr_atomSP->left_colorID;
		aux1S.colorIDA[1] = curr_atomSP->middle_colorID;
		aux1S.colorIDA[2] = curr_atomSP->right_colorID;
		break;

	    case 3:
		color1ID = InterpolateColor_ (curr_atomSP->left_colorID,
					      curr_atomSP->middle_colorID,
					      guiSP);
		color2ID = InterpolateColor_ (curr_atomSP->middle_colorID,
					      curr_atomSP->right_colorID,
					      guiSP);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[0],
				curr_atomSP->left_colorID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[1],
				color1ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[2],
				curr_atomSP->middle_colorID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[3],
				color2ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[4],
				curr_atomSP->right_colorID);
		aux1S.colorIDA[0] = curr_atomSP->left_colorID;
		aux1S.colorIDA[1] = color1ID;
		aux1S.colorIDA[2] = curr_atomSP->middle_colorID;
		aux1S.colorIDA[3] = color2ID;
		aux1S.colorIDA[4] = curr_atomSP->right_colorID;
		break;

	    case 4:
		AddTwoColors_ (curr_atomSP->left_colorID,
			       curr_atomSP->middle_colorID,
			       guiSP,
			       &color1ID, &color2ID);
		AddTwoColors_ (curr_atomSP->middle_colorID,
			       curr_atomSP->right_colorID,
			       guiSP,
			       &color3ID, &color4ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[0],
				curr_atomSP->left_colorID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[1],
				color1ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[2],
				color2ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[3],
				curr_atomSP->middle_colorID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[4],
				color3ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[5],
				color4ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[6],
				curr_atomSP->right_colorID);
		aux1S.colorIDA[0] = curr_atomSP->left_colorID;
		aux1S.colorIDA[1] = color1ID;
		aux1S.colorIDA[2] = color2ID;
		aux1S.colorIDA[3] = curr_atomSP->middle_colorID;
		aux1S.colorIDA[4] = color3ID;
		aux1S.colorIDA[5] = color4ID;
		aux1S.colorIDA[6] = curr_atomSP->right_colorID;
		break;

	    case 5:
		AddThreeColors_ (curr_atomSP->left_colorID,
				 curr_atomSP->middle_colorID,
				 guiSP,
				 &color1ID, &color2ID, &color3ID);
		AddThreeColors_ (curr_atomSP->middle_colorID,
				 curr_atomSP->right_colorID,
				 guiSP,
				 &color4ID, &color5ID, &color6ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[0],
				curr_atomSP->left_colorID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[1],
				color1ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[2],
				color2ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[3],
				color3ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[4],
				curr_atomSP->middle_colorID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[5],
				color4ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[6],
				color5ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[7],
				color6ID);
		XSetForeground (guiSP->displaySP, guiSP->theGCA[8],
				curr_atomSP->right_colorID);
		aux1S.colorIDA[0] = curr_atomSP->left_colorID;
		aux1S.colorIDA[1] = color1ID;
		aux1S.colorIDA[2] = color2ID;
		aux1S.colorIDA[3] = color3ID;
		aux1S.colorIDA[4] = curr_atomSP->middle_colorID;
		aux1S.colorIDA[5] = color4ID;
		aux1S.colorIDA[6] = color5ID;
		aux1S.colorIDA[7] = color6ID;
		aux1S.colorIDA[8] = curr_atomSP->right_colorID;
		break;
	    }

	/* Copy the atomic index into aux1S: */
	aux1S.atomI = curr_backboneSP->c_alphaI;

	/* Draw bond to the previous CA atom: */
	if (curr_backboneSP->previous_c_alphaF)
	    {
	    /* Pointer to the bond partner: */
	    partner_atomSP = curr_mol_complexSP->atomSP +
			     curr_backboneSP->previous_c_alphaI;

	    /* Draw one (mono) or two bonds (stereo): */
	    for (imageI = 0; imageI < imagesN; imageI++)
		{
		/* Copy imageI to aux1S: */
		aux1S.imageI = imageI;

		/* Prepare screen coordinates of */
		/* both atoms  involved in bond: */
		aux1S.screen_x0 = curr_atomSP->raw_atomS.screen_x[imageI];
		aux1S.screen_y0 = curr_atomSP->raw_atomS.screen_y;
		aux1S.screen_x1 = partner_atomSP->raw_atomS.screen_x[imageI];
		aux1S.screen_y1 = partner_atomSP->raw_atomS.screen_y;
		aux1S.atomic_z0 = curr_atomSP->raw_atomS.z[imageI];
		aux1S.atomic_z1 = partner_atomSP->raw_atomS.z[imageI];

		/* Prepare differences: */
		aux1S.screen_delta_x = aux1S.screen_x1 - aux1S.screen_x0;
		aux1S.screen_delta_y = aux1S.screen_y1 - aux1S.screen_y0;
		aux1S.atomic_delta_z = aux1S.atomic_z1 - aux1S.atomic_z0;

		/* Shift and tilt bond to ensure */
		/* the proper stacking of bonds: */
		delta_z_sign = 1.0;
		if (aux1S.atomic_delta_z < 0) delta_z_sign = -1.0;
		z_shift = delta_z_sign * Z_SHIFT;
		aux1S.atomic_z0 += z_shift;
		aux1S.atomic_z1 -= z_shift;
		aux1S.atomic_delta_z -= 3 * z_shift;

		/* Some absolute differences: */
		screen_abs_delta_x = abs (aux1S.screen_delta_x);
		screen_abs_delta_y = abs (aux1S.screen_delta_y);

		/* Find the region: */
		if (screen_abs_delta_x >= screen_abs_delta_y)
		    {
		    if (aux1S.screen_delta_x >= 0) regionI = 1;
		    else regionI = 3;
		    }
		else
		    {
		    if (aux1S.screen_delta_y >= 0) regionI = 2;
		    else regionI = 4;
		    }
		if ((aux1S.screen_delta_x == 0) && (aux1S.screen_delta_y == 0))
		    {
		    regionI = 0;
		    }

		/* Each region has its own drawing procedure: */
		switch (regionI)
		    {
		    /* Both atoms are  projected to  the same  point, */
		    /* i.e. this bond is perpendicular to the screen: */
		    case 0:
			/* Do nothing! */
			break;

		    /* Right quadrant: */
		    case 1:
			switch (styleI)
			    {
			    case 1:
				BondStyle1Quadrant1_ (&aux1S, bondI);
				break;
			    case 2:
				BondStyle2Quadrant1_ (&aux1S, bondI);
				break;
			    case 3:
				BondStyle3Quadrant1_ (&aux1S, bondI);
				break;
			    case 4:
				BondStyle4Quadrant1_ (&aux1S, bondI);
				break;
			    case 5:
				BondStyle5Quadrant1_ (&aux1S, bondI);
				break;
			    default:
				;
			    }
			break;

		    /* Bottom quadrant (check Note 3!): */
		    case 2:
			switch (styleI)
			    {
			    case 1:
				BondStyle1Quadrant2_ (&aux1S, bondI);
				break;
			    case 2:
				BondStyle2Quadrant2_ (&aux1S, bondI);
				break;
			    case 3:
				BondStyle3Quadrant2_ (&aux1S, bondI);
				break;
			    case 4:
				BondStyle4Quadrant2_ (&aux1S, bondI);
				break;
			    case 5:
				BondStyle5Quadrant2_ (&aux1S, bondI);
				break;
			    default:
				;
			    }
			break;

		    /* Left quadrant: */
		    case 3:
			switch (styleI)
			    {
			    case 1:
				BondStyle1Quadrant3_ (&aux1S, bondI);
				break;
			    case 2:
				BondStyle2Quadrant3_ (&aux1S, bondI);
				break;
			    case 3:
				BondStyle3Quadrant3_ (&aux1S, bondI);
				break;
			    case 4:
				BondStyle4Quadrant3_ (&aux1S, bondI);
				break;
			    case 5:
				BondStyle5Quadrant3_ (&aux1S, bondI);
				break;
			    default:
				;
			    }
			break;

		    /* Top quadrant (check Note 3!): */
		    case 4:
			switch (styleI)
			    {
			    case 1:
				BondStyle1Quadrant4_ (&aux1S, bondI);
				break;
			    case 2:
				BondStyle2Quadrant4_ (&aux1S, bondI);
				break;
			    case 3:
				BondStyle3Quadrant4_ (&aux1S, bondI);
				break;
			    case 4:
				BondStyle4Quadrant4_ (&aux1S, bondI);
				break;
			    case 5:
				BondStyle5Quadrant4_ (&aux1S, bondI);
				break;
			    default:
				;
			    }
			break;

		    /* This should be the impossible case: */
		    default:
			;
		    }

		/* Update the counter: */
		bonds_drawnN++;
		}	/* imageI loop */
	    }

	/* Draw bond to the next CA atom: */
	if (curr_backboneSP->next_c_alphaF)
	    {
	    /* Pointer to the bond partner: */
	    partner_atomSP = curr_mol_complexSP->atomSP +
			     curr_backboneSP->next_c_alphaI;

	    /* Draw one (mono) or two bonds (stereo): */
	    for (imageI = 0; imageI < imagesN; imageI++)
		{
		/* Copy imageI to aux1S: */
		aux1S.imageI = imageI;

		/* Prepare screen coordinates of */
		/* both atoms  involved in bond: */
		aux1S.screen_x0 = curr_atomSP->raw_atomS.screen_x[imageI];
		aux1S.screen_y0 = curr_atomSP->raw_atomS.screen_y;
		aux1S.screen_x1 = partner_atomSP->raw_atomS.screen_x[imageI];
		aux1S.screen_y1 = partner_atomSP->raw_atomS.screen_y;
		aux1S.atomic_z0 = curr_atomSP->raw_atomS.z[imageI];
		aux1S.atomic_z1 = partner_atomSP->raw_atomS.z[imageI];

		/* Prepare differences: */
		aux1S.screen_delta_x = aux1S.screen_x1 - aux1S.screen_x0;
		aux1S.screen_delta_y = aux1S.screen_y1 - aux1S.screen_y0;
		aux1S.atomic_delta_z = aux1S.atomic_z1 - aux1S.atomic_z0;

		/* Shift and tilt bond to ensure */
		/* the proper stacking of bonds: */
		delta_z_sign = 1.0;
		if (aux1S.atomic_delta_z < 0) delta_z_sign = -1.0;
		z_shift = delta_z_sign * Z_SHIFT;
		aux1S.atomic_z0 += z_shift;
		aux1S.atomic_z1 -= z_shift;
		aux1S.atomic_delta_z -= 3 * z_shift;

		/* Some absolute differences: */
		screen_abs_delta_x = abs (aux1S.screen_delta_x);
		screen_abs_delta_y = abs (aux1S.screen_delta_y);

		/* Find the region: */
		if (screen_abs_delta_x >= screen_abs_delta_y)
		    {
		    if (aux1S.screen_delta_x >= 0) regionI = 1;
		    else regionI = 3;
		    }
		else
		    {
		    if (aux1S.screen_delta_y >= 0) regionI = 2;
		    else regionI = 4;
		    }
		if ((aux1S.screen_delta_x == 0) && (aux1S.screen_delta_y == 0))
		    {
		    regionI = 0;
		    }

		/* Each region has its own drawing procedure: */
		switch (regionI)
		    {
		    /* Both atoms are  projected to  the same  point, */
		    /* i.e. this bond is perpendicular to the screen: */
		    case 0:
			/* Do nothing! */
			break;

		    /* Right quadrant: */
		    case 1:
			switch (styleI)
			    {
			    case 1:
				BondStyle1Quadrant1_ (&aux1S, bondI);
				break;
			    case 2:
				BondStyle2Quadrant1_ (&aux1S, bondI);
				break;
			    case 3:
				BondStyle3Quadrant1_ (&aux1S, bondI);
				break;
			    case 4:
				BondStyle4Quadrant1_ (&aux1S, bondI);
				break;
			    case 5:
				BondStyle5Quadrant1_ (&aux1S, bondI);
				break;
			    default:
				;
			    }
			break;

		    /* Bottom quadrant (check Note 3!): */
		    case 2:
			switch (styleI)
			    {
			    case 1:
				BondStyle1Quadrant2_ (&aux1S, bondI);
				break;
			    case 2:
				BondStyle2Quadrant2_ (&aux1S, bondI);
				break;
			    case 3:
				BondStyle3Quadrant2_ (&aux1S, bondI);
				break;
			    case 4:
				BondStyle4Quadrant2_ (&aux1S, bondI);
				break;
			    case 5:
				BondStyle5Quadrant2_ (&aux1S, bondI);
				break;
			    default:
				;
			    }
			break;

		    /* Left quadrant: */
		    case 3:
			switch (styleI)
			    {
			    case 1:
				BondStyle1Quadrant3_ (&aux1S, bondI);
				break;
			    case 2:
				BondStyle2Quadrant3_ (&aux1S, bondI);
				break;
			    case 3:
				BondStyle3Quadrant3_ (&aux1S, bondI);
				break;
			    case 4:
				BondStyle4Quadrant3_ (&aux1S, bondI);
				break;
			    case 5:
				BondStyle5Quadrant3_ (&aux1S, bondI);
				break;
			    default:
				;
			    }
			break;

		    /* Top quadrant (check Note 3!): */
		    case 4:
			switch (styleI)
			    {
			    case 1:
				BondStyle1Quadrant4_ (&aux1S, bondI);
				break;
			    case 2:
				BondStyle2Quadrant4_ (&aux1S, bondI);
				break;
			    case 3:
				BondStyle3Quadrant4_ (&aux1S, bondI);
				break;
			    case 4:
				BondStyle4Quadrant4_ (&aux1S, bondI);
				break;
			    case 5:
				BondStyle5Quadrant4_ (&aux1S, bondI);
				break;
			    default:
				;
			    }
			break;

		    /* This should be the impossible case: */
		    default:
			;
		    }

		/* Update the counter: */
		bonds_drawnN++;
		}	/* imageI loop */
	    }
	}	/* c_alphaI loop */
    }		/* mol_complexI loop */

return bonds_drawnN;
}

/*===========================================================================*/