• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.examples.inH A D01-Jun-20193.2 KiB10088

README.cairoH A D01-Jun-20191,015 2517

ext-cairo-test.cH A D01-Jun-2019630 3021

extXdrawable_demo.cH A D01-Jun-20197.1 KiB212118

plcdemos.hH A D01-Jun-20191.7 KiB7143

test_plbuf.cH A D01-Jun-20197.5 KiB283131

test_plend.cH A D01-Jun-2019592 2913

tutor.cH A D01-Jun-20197.6 KiB289119

x00c.cH A D01-Jun-20191.6 KiB5821

x01c.cH A D01-Jun-201910.3 KiB408249

x02c.cH A D01-Jun-20193.7 KiB15373

x03c.cH A D01-Jun-20192.2 KiB10261

x04c.cH A D01-Jun-20194 KiB157101

x05c.cH A D01-Jun-2019846 4320

x06c.cH A D01-Jun-20192.2 KiB9053

x07c.cH A D01-Jun-20192.9 KiB12082

x08c.cH A D01-Jun-201912.5 KiB394266

x09c.cH A D01-Jun-201913.2 KiB462280

x10c.cH A D01-Jun-2019794 3517

x11c.cH A D01-Jun-20194.7 KiB168100

x12c.cH A D01-Jun-20192 KiB9262

x13c.cH A D01-Jun-20192.3 KiB9362

x14c.cH A D01-Jun-20199.8 KiB434246

x15c.cH A D01-Jun-20198.5 KiB291155

x16c.cH A D01-Jun-201915.8 KiB596405

x17c.cH A D01-Jun-20194.4 KiB181101

x18c.cH A D01-Jun-20194.1 KiB171109

x19c.cH A D01-Jun-20199.7 KiB324222

x20c.cH A D01-Jun-201913.7 KiB486331

x21c.cH A D01-Jun-201911.7 KiB408301

x22c.cH A D01-Jun-201911.9 KiB448312

x23c.cH A D01-Jun-201911.5 KiB412341

x24c.cH A D01-Jun-20193 KiB14576

x25c.cH A D01-Jun-20193.8 KiB12092

x26c.cH A D01-Jun-20197.6 KiB253134

x27c.cH A D01-Jun-20196.3 KiB254155

x28c.cH A D01-Jun-201913.7 KiB410313

x29c.cH A D01-Jun-201914.4 KiB431282

x30c.cH A D01-Jun-20194.3 KiB15677

x31c.cH A D01-Jun-20199.1 KiB302225

x32c.cH A D01-Jun-20194.5 KiB18599

x33c.cH A D01-Jun-201929.2 KiB886700

x34c.cH A D01-Jun-20193.1 KiB12866

README.cairo

1Some examples demonstrating how to use the PLplot xcairo and extcairo
2devices to draw into an externally supplied XDrawable or Cairo context.
3
4EXTERNAL X DRAWABLE EXAMPLES
5~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6
7The external X drawable example is extXdrawable_demo.c.  It is designed to
8demonstrate the use of the ability of plplot's xcairo driver to use an X
9drawable supplied by an application.  The example itself uses GTK but the
10concept applies to any graphical framework, or even programs using libX11
11directly.
12
13To build this demo, install PLplot with the "make install" command and then
14run 'make extXdrawable_demo' in the installed .../examples/c directory.
15
16EXTERNAL CAIRO CONTEXT EXAMPLES
17~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18
19The C program ext-cairo-test.c demonstrates how to pass in an external
20Cairo Context that PLplot can use for plotting using the extcairo device.
21
22To build this demo, install PLplot with the "make install" command and then
23run 'make ext-cairo-test' in the installed .../examples/c directory.
24
25