Imported Upstream version 4.6.0
[debian/atlc] / src / non_gui / fill_image_vector_for_create_bmp_for_symmetrical_stripline.c
1 /* atlc - arbitrary transmission line calculator, for the analysis of
2 transmission lines are directional couplers. 
3
4 Copyright (C) 2002. Dr. David Kirkby, PhD (G8WRB).
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either package_version 2
9 of the License, or (at your option) any later package_version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
19 USA.
20
21 Dr. David Kirkby, e-mail drkirkby at ntlworld.com 
22
23 */
24 #include "config.h"
25
26 #ifdef HAVE_STRING_H
27 #include <string.h>
28 #endif
29
30 #ifdef HAVE_STRINGS_H
31 #include <strings.h>
32 #endif
33
34 #ifdef HAVE_STDLIB_H
35 #include <stdlib.h>
36 #endif
37
38 #include "definitions.h"
39
40 void fill_image_vector_for_thin_strip(int W,int H, int w, unsigned char *image_vector) 
41 {
42    int i, j, vector_original=0;
43    unsigned char red, green, blue;
44    for(j=0;j<H;++j)
45    {
46       for(i=0;i<W; ++i)
47       {
48          /* Put a small border in green. Only one pixel is needed, but
49          I'll put a few more. */
50
51          if( (j<BORDER) || (j>=H-BORDER))
52          {
53             red=0x00;
54             green=0xff;
55             blue=0x00;
56          }
57          /* Fill in the dielectric */
58          else if( (j==H/2)  && (i > (W-w)/2) && (i < (W+w)/2)) 
59          {
60             red=0xff; 
61             green=0x00; 
62             blue=0x00; 
63          }
64          else
65          {
66             red=0xff; 
67             green=0xff; 
68             blue=0xff; 
69          }
70          image_vector[vector_original]=blue;
71          image_vector[vector_original+1]=green;
72          image_vector[vector_original+2]=red;
73          vector_original+=3;
74       }
75    }
76 }