|
From: <ai...@us...> - 2013-09-28 17:50:17
|
Revision: 12543
http://sourceforge.net/p/plplot/code/12543
Author: airwin
Date: 2013-09-28 17:50:13 +0000 (Sat, 28 Sep 2013)
Log Message:
-----------
Regenerate this file (only used for the legacy matwrapped bindings)
to make it consistent with the updated #defines in
bindings/swig-support/plplotcapi.i. This regeneration is accomplished
by running the check_plplot_octave_def target and copying the
comparison file generated in the build tree on top of this source-tree
file.
Modified Paths:
--------------
trunk/bindings/octave/plplot_octave_def
Modified: trunk/bindings/octave/plplot_octave_def
===================================================================
--- trunk/bindings/octave/plplot_octave_def 2013-09-28 17:30:43 UTC (rev 12542)
+++ trunk/bindings/octave/plplot_octave_def 2013-09-28 17:50:13 UTC (rev 12543)
@@ -113,25 +113,39 @@
global PL_LEGEND_ROW_MAJOR
PL_LEGEND_ROW_MAJOR = 128;
global PL_COLORBAR_LABEL_LEFT
-PL_COLORBAR_LABEL_LEFT = 1;
+PL_COLORBAR_LABEL_LEFT = 0x1;
global PL_COLORBAR_LABEL_RIGHT
-PL_COLORBAR_LABEL_RIGHT = 2;
+PL_COLORBAR_LABEL_RIGHT = 0x2;
global PL_COLORBAR_LABEL_TOP
-PL_COLORBAR_LABEL_TOP = 4;
+PL_COLORBAR_LABEL_TOP = 0x4;
global PL_COLORBAR_LABEL_BOTTOM
-PL_COLORBAR_LABEL_BOTTOM = 8;
+PL_COLORBAR_LABEL_BOTTOM = 0x8;
global PL_COLORBAR_IMAGE
-PL_COLORBAR_IMAGE = 16;
+PL_COLORBAR_IMAGE = 0x10;
global PL_COLORBAR_SHADE
-PL_COLORBAR_SHADE = 32;
+PL_COLORBAR_SHADE = 0x20;
global PL_COLORBAR_GRADIENT
-PL_COLORBAR_GRADIENT = 64;
+PL_COLORBAR_GRADIENT = 0x40;
+global PL_COLORBAR_CAP_NONE
+PL_COLORBAR_CAP_NONE = 0x80;
global PL_COLORBAR_CAP_LOW
-PL_COLORBAR_CAP_LOW = 128;
+PL_COLORBAR_CAP_LOW = 0x100;
global PL_COLORBAR_CAP_HIGH
-PL_COLORBAR_CAP_HIGH = 256;
+PL_COLORBAR_CAP_HIGH = 0x200;
global PL_COLORBAR_SHADE_LABEL
-PL_COLORBAR_SHADE_LABEL = 512;
+PL_COLORBAR_SHADE_LABEL = 0x400;
+global PL_COLORBAR_ORIENT_RIGHT
+PL_COLORBAR_ORIENT_RIGHT = 0x800;
+global PL_COLORBAR_ORIENT_TOP
+PL_COLORBAR_ORIENT_TOP = 0x1000;
+global PL_COLORBAR_ORIENT_LEFT
+PL_COLORBAR_ORIENT_LEFT = 0x2000;
+global PL_COLORBAR_ORIENT_BOTTOM
+PL_COLORBAR_ORIENT_BOTTOM = 0x4000;
+global PL_COLORBAR_BACKGROUND
+PL_COLORBAR_BACKGROUND = 0x8000;
+global PL_COLORBAR_BOUNDING_BOX
+PL_COLORBAR_BOUNDING_BOX = 0x10000;
global PLSWIN_DEVICE
PLSWIN_DEVICE = 1; # device coordinates
global PLSWIN_WORLD
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|