ppplcl(3NCARG)


NAME

   PPPLCL - clips a polyline against a clipping rectangle. It is intended
   that, eventually, there should be a better routine that will clip a
   polyline against an arbitrary polygon, but that routine has not yet
   been written.

SYNOPSIS

   CALL PPPLCL (XMIN,XMAX,YMIN,YMAX,XCPL,YCPL,NCPL,RWRK,LRWK,URPF,IERR)

C-BINDING SYNOPSIS

   #include <ncarg/ncargC.h>

   void c_ppplcl(float xmin,
                 float xmax,
                 float ymin,
                 float ymax,
                 float *xcpl,
                 float *ycpl,
                 int ncpl,
                 float *rwrk,
                 int lwrk,
                 int (*urpf_)(float *xcra,
                              float *ycra,
                              int *ncra),
                 int *ierr)

DESCRIPTION

   XMIN        (an input expression of type REAL) is the X coordinate
               value defining the position of the left edge of the
               clipping rectangle.

   XMAX        (an input expression of type REAL) is the X coordinate
               value defining the position of the right edge of the
               clipping rectangle.

   YMIN        (an input expression of type REAL) is the Y coordinate
               value defining the position of the bottom of the clipping
               rectangle.

   YMAX        (an input expression of type REAL) is the Y coordinate
               value defining the position of the top of the clipping
               rectangle.

   XCPL        (an input array of type REAL) is the X coordinate array for
               the polyline that is to be clipped.

   YCPL        (an input array of type REAL) is the Y coordinate array for
               the polyline that is to be clipped.

   NCPL        (an input expression of type INTEGER) is the number of
               points defining the input polyline (the number of
               meaningful elements in each of the arrays XCPL and YCPL).

   RWRK        (a scratch array of type REAL) is a workspace array for
               PPPLCL to use.  It is divided into halves; one half is used
               for X coordinates and the other half for Y coordinates.
               This array doesn't have to be too big unless it is
               important not to break the polyline except at the edges of
               the clipping rectangle.

   LRWK        (an input expression of type INTEGER) is the length of the
               array RWRK.

   URPF        is the name of a user-provided routine to process the
               fragments of the polyline resulting from the clipping
               process.  This name must appear in an EXTERNAL statement in
               the routine that calls PPPLCL and the routine itself must
               have the following form:

                    SUBROUTINE URPF (XCRA,YCRA,NCRA)
                      DIMENSION XCRA(NCRA),YCRA(NCRA)
                      ...(code to process a polyline)...
                      RETURN
                    END

               Each of the arguments XCRA and YCRA is a real array,
               dimensioned NCRA; the former holds the X coordinates, and
               the latter the Y coordinates, of a polyline fragment.

   IERR        (an output variable of type INTEGER) is returned with the
               value zero if no errors occurred in the execution of PPPLCL
               or with a small positive value if an error did occur. The
               value 1 indicates that NCPL is less than or equal to zero
               and the value 2 indicates that LRWK is less than 4.

C-BINDING DESCRIPTION

   The C-binding argument descriptions are the same as the FORTRAN
   argument descriptions.

USAGE

   The FORTRAN statement

   CALL PPPLCL (XMIN,XMAX,YMIN,YMAX,XCPL,YCPL,NCPL,RWRK,LRWK,URPF,IERR)

   clips a polyline against a rectangle and delivers the portions of the
   polyline that fall within the rectangle, one by one, to the user-
   specified polyline-fragment-processing routine URPF.

EXAMPLES

   Use the ncargex command to see the following relevant examples: ppex01,
   tppack, c_ppex01.

ACCESS

   To use PPPLCL or c_ppplcl, load the NCAR Graphics libraries ncarg,
   ncarg_gks, and ncarg_c, preferably in that order.

SEE ALSO

   Online: polypack, ppdipo, ppditr, ppinpo, ppintr, ppppap, ppunpo,
   ppuntr, ncarg_cbind.

   Hardcopy: None.

COPYRIGHT

   Copyright (C) 1987-2009
   University Corporation for Atmospheric Research
   The use of this Software is governed by a License Agreement.





Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.





Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.


Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.





Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.


Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.





Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.


Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.