summaryrefslogtreecommitdiff
path: root/graphics/asymptote/prcfile.h
blob: d70760655506cf3502a9e6e4f2873c989bdef851 (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
26
27
28
29
30
31
#ifndef PRCFILE_H
#define PRCFILE_H

#include "memory.h"
#include "pen.h"

inline double X(const camp::triple &v) {return v.getx();}
inline double Y(const camp::triple &v) {return v.gety();}
inline double Z(const camp::triple &v) {return v.getz();}

#include "prc/oPRCFile.h"

namespace camp {

inline prc::RGBAColour rgba(pen p) {
  p.convert();
  p.torgb();
  return prc::RGBAColour(p.red(),p.green(),p.blue(),p.opacity());
}

static const double inches=72;
static const double cm=inches/2.54;

class prcfile : public prc::oPRCFile {
public:
  prcfile(string name) : prc::oPRCFile(name.c_str(),10.0/cm) {} // Use bp.
};

} //namespace camp

#endif