blob: 2f5fc37eee309ed7c86b3e55cb889083e9b9ff21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// file: genell.h
// update: 03/22/03
#ifndef _GENELL_H
#define _GENELL_H
#include <cassert>
#include <cstdlib>
#include <iostream>
#include "ksolid.h"
using namespace std;
K_SOLID read_ell(istream&, const bigrational& = 0);
K_SOLID read_BRLCAD_ell(istream&, const bigrational& = 0);
K_SOLID gen_ell(const bigrational_vector pts[4]);
#endif
|