File: geometry3d.cpp

package info (click to toggle)
core%2B%2B 1.7-12
  • links: PTS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 8,356 kB
  • ctags: 11,885
  • sloc: cpp: 26,527; ansic: 10,005; makefile: 2,661; sh: 1,473
file content (20 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// file: geometry3d.cc
//       sources for 3d geometry primitives
//
// author: Igor Pechtchanski (pechtcha@cs.nyu.edu)
// CORE Library version 1.4
// $Id: geometry3d.cpp,v 1.4 2003/09/04 16:35:48 exact Exp $

#ifndef CORE_LEVEL 
#define CORE_LEVEL 3
#endif

#include <CORE/CORE.h>
#include <CORE/geometry3d.h>

#include "geom3d/point3d.cpp"
#include "geom3d/line3d.cpp"
#include "geom3d/plane3d.cpp"
#include "geom3d/segment3d.cpp"
#include "geom3d/polygon3d.cpp"
#include "geom3d/triangle3d.cpp"