~ubuntu-branches/ubuntu/trusty/rheolef/trusty-proposed

« back to all changes in this revision

Viewing changes to nfem/lib/geo-visu.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2010-06-12 09:08:59 UTC
  • Revision ID: james.westby@ubuntu.com-20100612090859-8gpm2gc7j3ab43et
Tags: upstream-5.89
ImportĀ upstreamĀ versionĀ 5.89

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _RHEO_GEO_VISU_H
 
2
#define _RHEO_GEO_VISU_H
 
3
///
 
4
/// This file is part of Rheolef.
 
5
///
 
6
/// Copyright (C) 2000-2009 Pierre Saramito <Pierre.Saramito@imag.fr>
 
7
///
 
8
/// Rheolef is free software; you can redistribute it and/or modify
 
9
/// it under the terms of the GNU General Public License as published by
 
10
/// the Free Software Foundation; either version 2 of the License, or
 
11
/// (at your option) any later version.
 
12
///
 
13
/// Rheolef is distributed in the hope that it will be useful,
 
14
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
/// GNU General Public License for more details.
 
17
///
 
18
/// You should have received a copy of the GNU General Public License
 
19
/// along with Rheolef; if not, write to the Free Software
 
20
/// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
21
/// 
 
22
/// =========================================================================
 
23
//
 
24
// geo visualisation main procedure
 
25
//
 
26
// authors:
 
27
//      Pierre.Saramito@imag.fr
 
28
//
 
29
// date: 12 may 1997; update 26 january 2006
 
30
//
 
31
#include "rheolef/iorheo.h"
 
32
 
 
33
// ======================================================================
 
34
// geo visu members
 
35
// ======================================================================
 
36
class geo_visu_option_type {
 
37
public:
 
38
 
 
39
     geo_visu_option_type (std::ostream& s);
 
40
     void dump (std::ostream& os = std::cerr) const;
 
41
  
 
42
// data:
 
43
 
 
44
     iorheo::flag_type format;
 
45
 
 
46
     bool execute;
 
47
     bool clean;
 
48
     bool verbose;
 
49
 
 
50
     std::string basename;
 
51
     
 
52
     bool color;
 
53
     bool gray;
 
54
     bool black_and_white;
 
55
     bool stereo;
 
56
     bool fill;
 
57
     bool shrink;
 
58
     bool tube;
 
59
     bool ball;
 
60
     bool full;
 
61
     bool cut;
 
62
     bool split;
 
63
     bool lattice;
 
64
 
 
65
     point origin;
 
66
     point normal;
 
67
};
 
68
#endif // _RHEO_GEO_VISU_H