DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T l

⟦db4b1976c⟧ TextFile

    Length: 3670 (0xe56)
    Types: TextFile
    Names: »line_bund.c«

Derivation

└─⟦8648bda34⟧ Bits:30007244 EUUGD5_II: X11R5
    └─⟦2ca9b63e1⟧ »./contrib-1/contrib-1.00« 
        └─⟦a8392fb20⟧ 
            └─⟦this⟧ »contrib/examples/PEX/line_bund.c« 

TextFile

/* $XConsortium: line_bund.c,v 5.1 91/02/16 09:32:24 rws Exp $ */

/***********************************************************
Copyright (c) 1991 by Sun Microsystems, Inc. and the X Consortium.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its 
documentation for any purpose and without fee is hereby granted, 
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in 
supporting documentation, and that the names of Sun Microsystems,
the X Consortium, and MIT not be used in advertising or publicity 
pertaining to distribution of the software without specific, written 
prior permission.  

SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT 
SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.

******************************************************************/

/**********************************************************************/
/* attbundlelines.c                                                   */
/**********************************************************************/

#include <phigs/phigs.h>

/**********************************************************************/
/* Open struct 1.  Draw some lines.  Close the struct.                */
/**********************************************************************/

void SetUpBundles()
{
    Pline_bundle rep;
    rep.type = PLINE_DASH;
    rep.width = 4.0;
    rep.colr_ind = 2;
    pset_line_rep(1, 1, &rep);	/* workstation 1, line bundle 1 */
    rep.type = PLINE_DOT_DASH;
    rep.width = 3.0;
    rep.colr_ind = 3;
    pset_line_rep(1, 2, &rep);	/* workstation 1, line bundle 2 */
}

void DrawLines()
{
    Ppoint3 line[2];
    Ppoint3 points[5];
    Ppoint_list3 colored_line1, colored_line2;

    line[0].x = 0.1; line[0].y = 0.5; line[0].z = 0.0;
    line[1].x = 0.9; line[1].y = 0.5; line[1].z = 0.0;
    colored_line1.num_points = 2;
    colored_line1.points = line;

    points[0].x = 0.2; points[0].y = 0.6; points[0].z = 0.0;
    points[1].x = 0.8; points[1].y = 0.6; points[1].z = 0.0;
    points[2].x = 0.8; points[2].y = 0.9; points[2].z = 0.0;
    points[3].x = 0.2; points[3].y = 0.9; points[3].z = 0.0;
    points[4].x = 0.2; points[4].y = 0.6; points[4].z = 0.0;
    colored_line2.num_points = 5;
    colored_line2.points = points;

    popen_struct(1);
	pset_indiv_asf(PASPECT_LINETYPE, PASF_BUNDLED);
	pset_indiv_asf(PASPECT_LINEWIDTH, PASF_BUNDLED);
	pset_indiv_asf(PASPECT_LINE_COLR_IND, PASF_BUNDLED);
	pset_line_ind(1);					/* bundle 1 */
	ppolyline3(&colored_line1);

	pset_line_ind(2);					/* bundle 2 */
	ppolyline3(&colored_line2);

    pclose_struct();
}

/**********************************************************************/
/* main                                                               */
/**********************************************************************/

main()
{
    popen_phigs((char*)NULL, PDEF_MEM_SIZE);	/* open phigs */
    popen_ws(1,NULL,phigs_ws_type_x_tool);
                                                        /* station 1  */
    SetUpBundles();
    DrawLines();

    ppost_struct(1,1,1.0);		/* post struct 1         */
    sleep(10);
    pclose_ws(1);			/* close the workstation */
    pclose_phigs();			/* close phigs           */
}