|
From: <ai...@us...> - 2013-11-26 06:56:44
|
Revision: 12755
http://sourceforge.net/p/plplot/code/12755
Author: airwin
Date: 2013-11-26 06:56:39 +0000 (Tue, 26 Nov 2013)
Log Message:
-----------
Style previous commit.
Modified Paths:
--------------
trunk/bindings/f95/scstubs.c
trunk/examples/c/x22c.c
trunk/examples/c++/x22.cc
Modified: trunk/bindings/f95/scstubs.c
===================================================================
--- trunk/bindings/f95/scstubs.c 2013-11-26 06:52:42 UTC (rev 12754)
+++ trunk/bindings/f95/scstubs.c 2013-11-26 06:56:39 UTC (rev 12755)
@@ -1535,7 +1535,7 @@
void
PLSVECT2( void )
{
- c_plsvect( NULL, NULL, 0, 0 );
+ c_plsvect( NULL, NULL, 0, 0 );
}
void
Modified: trunk/examples/c/x22c.c
===================================================================
--- trunk/examples/c/x22c.c 2013-11-26 06:52:42 UTC (rev 12754)
+++ trunk/examples/c/x22c.c 2013-11-26 06:56:39 UTC (rev 12755)
@@ -31,8 +31,8 @@
void f2mnmx( PLFLT **f, PLINT nx, PLINT ny, PLFLT *fnmin, PLFLT *fnmax );
// Pairs of points making the line segments used to plot the user defined arroW
-static PLFLT arrow_x[6] = { -0.5, 0.5, 0.3, 0.5, 0.3, 0.5 };
-static PLFLT arrow_y[6] = { 0.0, 0.0, 0.2, 0.0, -0.2, 0.0 };
+static PLFLT arrow_x[6] = { -0.5, 0.5, 0.3, 0.5, 0.3, 0.5 };
+static PLFLT arrow_y[6] = { 0.0, 0.0, 0.2, 0.0, -0.2, 0.0 };
static PLFLT arrow2_x[6] = { -0.5, 0.3, 0.3, 0.5, 0.3, 0.3 };
static PLFLT arrow2_y[6] = { 0.0, 0.0, 0.2, 0.0, -0.2, 0.0 };
Modified: trunk/examples/c++/x22.cc
===================================================================
--- trunk/examples/c++/x22.cc 2013-11-26 06:52:42 UTC (rev 12754)
+++ trunk/examples/c++/x22.cc 2013-11-26 06:56:39 UTC (rev 12755)
@@ -168,11 +168,11 @@
void
x22::constriction2( void )
{
- int i, j;
- PLFLT dx, dy, x, y;
- PLFLT xmin, xmax, ymin, ymax;
- PLFLT Q, b, dbdx;
- PLFLT clev[nc];
+ int i, j;
+ PLFLT dx, dy, x, y;
+ PLFLT xmin, xmax, ymin, ymax;
+ PLFLT Q, b, dbdx;
+ PLFLT clev[nc];
dx = 1.0;
dy = 1.0;
@@ -209,9 +209,9 @@
pls->col0( 2 );
pls->shades( (const PLFLT * const *) u, nx, ny, NULL,
xmin + dx / 2, xmax - dx / 2, ymin + dy / 2, ymax - dy / 2,
- clev, nc, 0, 1, 1.0, plstream::fill, 1, NULL, NULL );
+ clev, nc, 0, 1, 1.0, plstream::fill, 1, NULL, NULL );
pls->vect( (const PLFLT * const *) u, (const PLFLT * const *) v, nx, ny,
- -1.0, plstream::tr2, (void *) &cgrid2 );
+ -1.0, plstream::tr2, (void *) &cgrid2 );
// Plot edges using plpath (which accounts for coordinate transformation) rather than plline
pls->path( nseg, xmin, ymax, xmax, ymax );
pls->path( nseg, xmin, ymin, xmax, ymin );
@@ -359,9 +359,9 @@
pls->init();
- nx = 20;
- ny = 20;
- nc = 11;
+ nx = 20;
+ ny = 20;
+ nc = 11;
nseg = 20;
// Allocate arrays
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|