blob: 4443859b502ac452389f1dfb506e94a9c45de021 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef PRCFILE_H
#define PRCFILE_H
#include "memory.h"
#include "prc/oPRCFile.h"
namespace camp {
inline RGBAColour rgba(pen p) {
p.convert();
p.torgb();
return RGBAColour(p.red(),p.green(),p.blue(),p.opacity());
}
static const double inches=72;
static const double cm=inches/2.54;
class prcfile : public oPRCFile {
public:
prcfile(string name) : oPRCFile(name.c_str(),10.0/cm) {} // Use bp.
};
} //namespace camp
#endif
|