summaryrefslogtreecommitdiff
path: root/graphics/asymptote/drawpath.h
blob: 2903bdcc3b8351e73604cbb2bfe6328f18b2141a (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
32
33
34
35
36
37
/*****
 * drawpath.h
 * Andy Hammerlindl 2002/06/06
 *
 * Stores a path that has been added to a picture.
 *****/

#ifndef DRAWPATH_H
#define DRAWPATH_H

#include "drawelement.h"
#include "path.h"

namespace camp {

class drawPath : public drawPathPenBase {
public:
  drawPath(path src, pen pentype, const string& key="") :
    drawElement(key), drawPathPenBase(src,pentype) {}

  virtual ~drawPath() {}

  void bounds(bbox& b, iopipestream&, boxvector&, bboxlist&) {
    strokebounds(b,p);
  }

  bool svg() {return true;}

  bool draw(psfile *out);

  drawElement *transformed(const transform& t);
};

pen adjustdash(pen& p, double arclength, bool cyclic);
}

#endif