File: vertex.h

package info (click to toggle)
python-visual 3.2.9-4.1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,796 kB
  • ctags: 2,664
  • sloc: cpp: 11,958; sh: 8,185; python: 3,709; ansic: 480; makefile: 311
file content (16 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef VISUAL_VERTEX_H
#define VISUAL_VERTEX_H

namespace visual {

struct vertex 
{
	double x,y,z,w;
	vertex( double _x, double _y, double _z, double _w) throw()
		: x( _x), y( _y), z( _z), w( _w) {}
	vertex() throw() {}
};

}

#endif // !VISUAL_VERTEX_H