Hi Hazen:
I have a number of PLplot projects I am actively working on at this time.
Those include
* Improving the ocaml build.
* Finishing up the new testing framework.
* Bug fixing (such as the -bg bug that was just demonstrated).
Once the above three are taken care of I also plan to restart
On 2009-09-15 11:08+0200 Mark de Wever wrote:
> Hi,
>
> In my program I set the background colour (using the extcairo device).
> Recently the graphics drawn no longer show up, since I wasn't sure
> whether it was a recent change in my code or in plplot I investigated
> further and tracked the prob
Hi Werner:
This is mostly directed to you, but there is also a quick question for Andrew
about the java bindings in my comments below.
On 2009-09-15 15:34+0200 Werner Smekal wrote:
> Hi Alan,
>
> I added these redefinition macros to plcdemos.h and plc++demos.h. But since
> we already use such a
Hi Alan,
I added these redefinition macros to plcdemos.h and plc++demos.h. But
since we already use such a macro for isnan(), where PL__HAVE_ISNAN is
defined in plConfig.h, I decided to do the same as well for _snprintf.
So I copied the relevant part form config.h.cmake to plConfig.h.cmake
Hi Werner,
the floor function does not exist in FORTRAN 77, so you need
to implement it, for instance:
*234567
REAL FUNCTION FLOOR(X)
REAL X
FLOOR = FLOAT(INT(X))
RETURN
END
The declaration "character*(length) label" is a Fortran 90
facility. Use:
chara
Hi,
when I compile the latest revision of PLplot with MinGW 3.4.5
including the g77 compiler I get the following compiler error:
Scanning dependencies of target x19f
[ 88%] Building Fortran object examples/f77/CMakeFiles/x19f.dir/
x19f.f.obj
E:\plbuild\examples\f77\x19f.f: In function `normali
Hi,
In my program I set the background colour (using the extcairo device).
Recently the graphics drawn no longer show up, since I wasn't sure
whether it was a recent change in my code or in plplot I investigated
further and tracked the problem down to plplot revision 10354.
I also found a way