File: coord.hpp

package info (click to toggle)
pcb2gcode 1.1.4-git20120902-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,400 kB
  • ctags: 358
  • sloc: sh: 10,116; cpp: 2,335; python: 53; makefile: 43
file content (17 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef COORD_H
#define COORD_H

#include <vector>

typedef std::pair<int,int>     coordpair;
typedef std::vector<coordpair> coords;


//#include "Fixed.hpp"
//typedef numeric::Fixed<16,16> ivalue_t;
typedef double ivalue_t;

typedef std::pair<ivalue_t, ivalue_t> icoordpair;
typedef std::vector<icoordpair>   icoords;

#endif // COORD_H