File: cdtest.c

package info (click to toggle)
plplot 5.10.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 26,280 kB
  • ctags: 13,512
  • sloc: ansic: 83,001; xml: 27,081; ada: 18,878; cpp: 15,966; tcl: 11,651; python: 7,075; f90: 7,058; ml: 6,974; java: 6,665; perl: 5,029; sh: 2,210; makefile: 199; lisp: 75; sed: 25; fortran: 7
file content (586 lines) | stat: -rw-r--r-- 13,312 bytes parent folder | download | duplicates (7)
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

#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include "defines.h"
#include "cd.h"

// cdtest.c: test program for the cgmdraw module.
//
//      Written by G. Edward Johnson <mailto:lorax@nist.gov>
//      Date: April 1996
//      Copyright: cd software produced by NIST, an agency of the
//      U.S. government, is by statute not subject to copyright
//      in the United States. Recipients of this software assume all
//      responsibilities associated with its operation, modification
//      and maintenance.
//
//


int main()
{
    cdImagePtr myimage;

    // Color indexes
    int     white;
    int     blue;
    int     red;
    int     green;
    int     black;
    int     lavender;
    // points for polygons and polylines
    cdPoint points[15];
    // output file
    FILE    *outf;


// create an image, 1000 by 1000 pixels
    myimage = cdImageCreate( 1000, 1000 );

// Allocate the background color
    white = cdImageColorAllocate( myimage, 255, 255, 255 );
    red   = cdImageColorAllocate( myimage, 255, 0, 0 );
    green = cdImageColorAllocate( myimage, 0, 255, 0 );
    blue  = cdImageColorAllocate( myimage, 0, 0, 255 );
    black = cdImageColorAllocate( myimage, 0, 0, 0 );

    if ( cdSetLineColor( myimage, blue ) )
    {
        fprintf( stderr, "cdSetLineColor Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetLineColor Unsuccessful\n" );
    }

    if ( cdSetLineColor( myimage, blue ) )
    {
        fprintf( stderr, "cdSetLineColor Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetLineColor Unsuccessful\n" );
    }


    if ( cdImageLine( myimage, 400, 8, 520, 8, green ) )
    {
        fprintf( stderr, "cdImageLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdImageLine Unsuccessful\n" );
    }

    if ( cdImageLine( myimage, 50, 50, 500, 500, red ) )
    {
        fprintf( stderr, "cdImageLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdImageLine Unsuccessful\n" );
    }

    if ( cdSetLineAttrib( myimage, 2, 3, red ) )
    {
        fprintf( stderr, "cdSetLineAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetLineAttrib Unsuccessful\n" );
    }

    if ( cdLine( myimage, 500, 50, 50, 500 ) )
    {
        fprintf( stderr, "cdLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdLine Unsuccessful\n" );
    }

// Now, build a rectangle
    if ( cdSetShapeFillAttrib( myimage, 3, blue, 6 ) )
    {
        fprintf( stderr, "cdSetShapeFillAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetShapeFillAttrib Unsuccessful\n" );
    }

    if ( cdSetShapeEdgeAttrib( myimage, 1, 2, green, 1 ) )
    {
        fprintf( stderr, "cdSetShapeEdgeAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetShapeEdgeAttrib Unsuccessful\n" );
    }

    if ( cdRectangle( myimage, 100, 100, 250, 250 ) )
    {
        fprintf( stderr, "cdRectangle Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdRectangle Unsuccessful\n" );
    }



// now check out each of the line styles in order

    if ( cdSetLineAttrib( myimage, 5, 4, green ) )
    {
        fprintf( stderr, "cdSetLineAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetLineAttrib Unsuccessful\n" );
    }

    if ( cdLine( myimage, 100, 600, 500, 600 ) )
    {
        fprintf( stderr, "cdLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdLine Unsuccessful\n" );
    }

    if ( cdSetLineAttrib( myimage, 4, -1, -1 ) )
    {
        fprintf( stderr, "cdSetLineAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetLineAttrib Unsuccessful\n" );
    }
    if ( cdLine( myimage, 100, 625, 500, 625 ) )
    {
        fprintf( stderr, "cdLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdLine Unsuccessful\n" );
    }

    if ( cdSetLineAttrib( myimage, 3, -1, -1 ) )
    {
        fprintf( stderr, "cdSetLineAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetLineAttrib Unsuccessful\n" );
    }
    if ( cdLine( myimage, 100, 650, 500, 650 ) )
    {
        fprintf( stderr, "cdLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdLine Unsuccessful\n" );
    }


    if ( cdSetLineAttrib( myimage, 2, -1, -1 ) )
    {
        fprintf( stderr, "cdSetLineAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetLineAttrib Unsuccessful\n" );
    }
    if ( cdLine( myimage, 100, 675, 500, 675 ) )
    {
        fprintf( stderr, "cdLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdLine Unsuccessful\n" );
    }

    if ( cdSetLineAttrib( myimage, 1, -1, -1 ) )
    {
        fprintf( stderr, "cdSetLineAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetLineAttrib Unsuccessful\n" );
    }
    if ( cdLine( myimage, 100, 700, 500, 700 ) )
    {
        fprintf( stderr, "cdLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdLine Unsuccessful\n" );
    }

// now make a circle
    if ( cdSetShapeFillAttrib( myimage, 1, -1, 6 ) )
    {
        fprintf( stderr, "cdSetShapeFillAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetShapeFillAttrib Unsuccessful\n" );
    }

    if ( cdSetShapeEdgeAttrib( myimage, 1, 2, green, 0 ) )
    {
        fprintf( stderr, "cdSetShapeEdgeAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetShapeEdgeAttrib Unsuccessful\n" );
    }

    if ( cdCircle( myimage, 500, 500, 25 ) )
    {
        fprintf( stderr, "cdCircle Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdCircle Unsuccessful\n" );
    }

// how about a Circular Arc now
    if ( cdArc3Pt( myimage, 550, 500, 600, 600, 650, 550 ) )
    {
        fprintf( stderr, "cdArc3Pt Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdArc3Pt Unsuccessful\n" );
    }

// now draw a closed Circular Arc
    if ( cdArc3PtClose( myimage, 550, 200, 600, 300, 650, 250, 0 ) )
    {
        fprintf( stderr, "cdArc3PtClose Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdArc3PtClose Unsuccessful\n" );
    }

// and now for an ellipse
    if ( cdSetShapeEdgeAttrib( myimage, 1, 2, green, 1 ) )
    {
        fprintf( stderr, "cdSetShapeEdgeAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetShapeEdgeAttrib Unsuccessful\n" );
    }

    if ( cdEllipse( myimage, 750, 200, 800, 250, 750, 300 ) )
    {
        fprintf( stderr, "cdEllipse Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdEllipse Unsuccessful\n" );
    }


// Now, the harder ones.  First lets try the polygon stuff
// a polygon with 7 or less points

    points[0].x = 700;
    points[0].y = 700;
    points[1].x = 725;
    points[1].y = 750;
    points[2].x = 775;
    points[2].y = 650;

    if ( cdPolygon( myimage, points, 3 ) )
    {
        fprintf( stderr, "cdPolygon Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdPolygon Unsuccessful\n" );
    }

// Here's a tough one, a polygon with more than seven points

    points[0].x  = 800;
    points[0].y  = 700;
    points[1].x  = 825;
    points[1].y  = 725;
    points[2].x  = 850;
    points[2].y  = 700;
    points[3].x  = 875;
    points[3].y  = 750;
    points[4].x  = 900;
    points[4].y  = 775;
    points[5].x  = 925;
    points[5].y  = 750;
    points[6].x  = 950;
    points[6].y  = 850;
    points[7].x  = 925;
    points[7].y  = 850;
    points[8].x  = 875;
    points[8].y  = 800;
    points[9].x  = 850;
    points[9].y  = 825;
    points[10].x = 825;
    points[10].y = 900;

    if ( cdPolygon( myimage, points, 11 ) )
    {
        fprintf( stderr, "cdPolygon Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdPolygon Unsuccessful\n" );
    }

// Now for a polygon set, two polygons (both triangles) the first one
// with an invisible edge closing it.

    points[0].x = 500;  // start of first polygon
    points[0].y = 350;
    points[0].e = 1;    // edge out is visible
    points[1].x = 575;
    points[1].y = 350;
    points[1].e = 1;
    points[2].x = 575;
    points[2].y = 430;
    points[2].e = 3;    // close polygon with visible edge
    points[3].x = 600;  // start of second polygon
    points[3].y = 350;
    points[3].e = 0;    // edge out is invisible
    points[4].x = 700;
    points[4].y = 350;
    points[4].e = 1;
    points[5].x = 650;
    points[5].y = 475;
    points[5].e = 2;    // close polygone with an invisible edge

// make the edges wider so it is easier to see if they are there
    if ( cdSetEdgeWidth( myimage, 3 ) )
    {
        fprintf( stderr, "cdSetEdgeWidth Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetEdgeWidth Unsuccessful\n" );
    }
    if ( cdPolygonSet( myimage, points, 6 ) ) // draw the polygonset
    {
        fprintf( stderr, "cdPolygonSet Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdPolygonSet Unsuccessful\n" );
    }

// now for poly lines, just like polygons (except they're lines)

    if ( cdSetLineAttrib( myimage, 1, 1, red ) )
    {
        fprintf( stderr, "cdSetLineAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetLineAttrib Unsuccessful\n" );
    }


    points[0].x = 400;
    points[0].y = 16;
    points[1].x = 520;
    points[1].y = 16;
    if ( cdPolyLine( myimage, points, 2 ) )
    {
        fprintf( stderr, "cdPolyLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdPolyLine Unsuccessful\n" );
    }

    points[0].x = 800;
    points[0].y = 650;
    points[1].x = 825;
    points[1].y = 675;
    points[2].x = 850;
    points[2].y = 650;
    points[3].x = 875;
    points[3].y = 700;
    if ( cdPolyLine( myimage, points, 4 ) )
    {
        fprintf( stderr, "cdPolyLine Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdPolyLine Unsuccessful\n" );
    }


// Markers
// set the attributes
    if ( cdSetMarkerAttrib( myimage, 1, 1, green ) )
    {
        fprintf( stderr, "cdSetMarkerAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetMarkerAttrib Unsuccessful\n" );
    }

// now plot the marker

    if ( cdMarker( myimage, 900, 500 ) )
    {
        fprintf( stderr, "cdMarker Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdMarker Unsuccessful\n" );
    }


    if ( cdSetMarkerAttrib( myimage, 5, 3, black ) )
    {
// set the marker type to cross
        fprintf( stderr, "cdSetMarkerAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetMarkerAttrib Unsuccessful\n" );
    }

// a Poly Marker,  two markers in different places
    points[0].x = 715;
    points[0].y = 785;
    points[1].x = 735;
    points[1].y = 815;

    if ( cdPolyMarker( myimage, points, 2 ) )
    {
        fprintf( stderr, "cdPolyMarker Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdMarker Unsuccessful\n" );
    }


// Hey, things are going so well, lets do some text
    lavender = cdImageColorAllocate( myimage, 204, 102, 255 );

    if ( cdSetTextAttrib( myimage, 1, lavender, 50 ) )
    {
        fprintf( stderr, "cdSetTextAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetTextAttrib Unsuccessful\n" );
    }

    if ( cdText( myimage, 50, 800, "CGM Draw Version 1.3" ) )
    {
        fprintf( stderr, "cdText Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdText Unsuccessful\n" );
    }

// More text.  This time test TextPath and TextOrient
    if ( cdSetTextPath( myimage, 3 ) )
    {
        fprintf( stderr, "cdSetTextPath Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetTextPath Unsuccessful\n" );
    }

    if ( cdText( myimage, 50, 800, "CGM Draw" ) )
    {
        fprintf( stderr, "cdText Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdText Unsuccessful\n" );
    }

    if ( cdSetTextOrient( myimage, 1, 0, 0, -1 ) )
    {
        fprintf( stderr, "cdSetTextOrient Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetTextOrient Unsuccessful\n" );
    }

    if ( cdSetTextPath( myimage, 0 ) )
    {
        fprintf( stderr, "cdSetTextPath Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetTextPath Unsuccessful\n" );
    }

    if ( cdText( myimage, 950, 400, "CGM Draw" ) )
    {
        fprintf( stderr, "cdText Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdText Unsuccessful\n" );
    }


    if ( cdSetTextOrient( myimage, 0, 1, 1, 0 ) )
    {
        fprintf( stderr, "cdSetTextOrient Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetTextOrient Unsuccessful\n" );
    }


    if ( cdSetTextAttrib( myimage, 5, -1, 25 ) )
    {
        fprintf( stderr, "cdSetTextAttrib Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdSetTextAttrib Unsuccessful\n" );
    }

    if ( cdText( myimage, 5, 5, "G. Edward Johnson" ) )
    {
        fprintf( stderr, "cdText Successful\n" );
    }
    else
    {
        fprintf( stderr, "cdText Unsuccessful\n" );
    }




    outf = fopen( "cdout.cgm", "wb" );
    if ( !outf )
        return 1;
    cdImageCgm( myimage, outf );
    fclose( outf );
    outf = 0;

    cdImageDestroy( myimage );


    return 0;
}