COVISE Core
coDoCoordinates.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8#ifndef CO_DO_COORDINATES_H
9#define CO_DO_COORDINATES_H
10
11#include "coDoGrid.h"
12
13/*
14 $Log: covise_unstr.h,v $
15 * Revision 1.1 1993/09/25 20:52:42 zrhk0125
16 * Initial revision
17 *
18*/
19
20/***********************************************************************\
21 ** **
22 ** Untructured class Version: 1.0 **
23 ** **
24 ** **
25 ** Description : Classes for the handling of an unstructured grid **
26 ** and the data on it in a distributed manner. **
27 ** **
28 ** Classes : **
29 ** **
30 ** Copyright (C) 1993 by University of Stuttgart **
31 ** Computer Center (RUS) **
32 ** Allmandring 30 **
33 ** 7000 Stuttgart 80 **
34 ** **
35 ** **
36 ** Author : A. Wierse (RUS) **
37 ** **
38 ** History : **
39 ** 23.06.93 Ver 1.0 **
40 ** **
41 ** **
42\***********************************************************************/
43
44namespace covise
45{
46
48{
49public:
50 coDoCoordinates(const coObjInfo &info, const char *t)
51 : coDoGrid(info, t)
52 {
53 }
54
55 virtual void getPointCoordinates(int no, float *xc, float *yc, float *zc) const = 0;
56 virtual int getNumElements() const = 0;
57};
58}
59#endif
#define DOEXPORT
Definition: coExport.h:331
GLdouble GLdouble t
Definition: khronos-glext.h:6449
list of all chemical elements
Definition: coConfig.h:27
Definition: coObjID.h:231
Definition: coDoCoordinates.h:48
virtual int getNumElements() const =0
virtual void getPointCoordinates(int no, float *xc, float *yc, float *zc) const =0
coDoCoordinates(const coObjInfo &info, const char *t)
Definition: coDoCoordinates.h:50
Definition: coDoGrid.h:17