COVISE Core
coGRObjTransformMsg.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//-*-Mode: C++;-*-
9// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10// ++ (C)2007 VISENSO ++
11// ++ coGRObjTransformMsg - stores TransformationMatrix of Object ++
12// ++ ++
13// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
14
15#ifndef COGROBJTRANSFORMMSG_H
16#define COGROBJTRANSFORMMSG_H
17
19
20namespace grmsg
21{
22
24
25{
26public:
27 // construct msg to send
28 coGRObjTransformMsg(const char *obj_name, float mat00, float mat01, float mat02, float mat03, float mat10, float mat11, float mat12, float mat13, float mat20, float mat21, float mat22, float mat23, float mat30, float mat31, float mat32, float mat33);
29
30 // reconstruct from received msg
31 coGRObjTransformMsg(const char *msg);
32};
33}
34#endif
#define GRMSGEXPORT
Definition: coExport.h:349
Definition: coGRActivatedViewpointMsg.h:23
Definition: coGRObjTransformAbstractMsg.h:26
Definition: coGRObjTransformMsg.h:25