51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
|
/**
|
||
|
* PANDA 3D SOFTWARE
|
||
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||
|
*
|
||
|
* All use of this software is subject to the terms of the revised BSD
|
||
|
* license. You should have received a copy of this license along
|
||
|
* with this source code in a file named "LICENSE."
|
||
|
*
|
||
|
* @file cLwoSurfaceBlockTMap.h
|
||
|
* @author drose
|
||
|
* @date 2001-04-30
|
||
|
*/
|
||
|
|
||
|
#ifndef CLWOSURFACEBLOCKTMAP_H
|
||
|
#define CLWOSURFACEBLOCKTMAP_H
|
||
|
|
||
|
#include "pandatoolbase.h"
|
||
|
|
||
|
#include "lwoSurfaceBlockTMap.h"
|
||
|
#include "lwoSurfaceBlockCoordSys.h"
|
||
|
|
||
|
#include "luse.h"
|
||
|
|
||
|
class LwoToEggConverter;
|
||
|
|
||
|
/**
|
||
|
* This class is a wrapper around LwoSurfaceBlockTMap and stores additional
|
||
|
* information useful during the conversion-to-egg process.
|
||
|
*/
|
||
|
class CLwoSurfaceBlockTMap {
|
||
|
public:
|
||
|
CLwoSurfaceBlockTMap(LwoToEggConverter *converter, const LwoSurfaceBlockTMap *tmap);
|
||
|
|
||
|
void get_transform(LMatrix4d &mat) const;
|
||
|
|
||
|
LPoint3 _center;
|
||
|
LVecBase3 _size;
|
||
|
LVecBase3 _rotation;
|
||
|
|
||
|
std::string _reference_object;
|
||
|
|
||
|
LwoSurfaceBlockCoordSys::Type _csys;
|
||
|
|
||
|
LwoToEggConverter *_converter;
|
||
|
CPT(LwoSurfaceBlockTMap) _tmap;
|
||
|
};
|
||
|
|
||
|
#include "cLwoSurfaceBlockTMap.I"
|
||
|
|
||
|
#endif
|