67 lines
2.2 KiB
C++
67 lines
2.2 KiB
C++
// Filename: eggMorph.h
|
|
// Created by: drose (29Jan99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef EGGMORPH_H
|
|
#define EGGMORPH_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "namable.h"
|
|
#include "luse.h"
|
|
#include "pset.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : EggMorph
|
|
// Description : A single <Dxyz> or <Duv> or some such entry. This
|
|
// simply contains the morph name and the offset value.
|
|
// The class EggMorph is actually a template class on
|
|
// the type of value that is being offset; the specific
|
|
// kinds of morphs are instantiated from this below.
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class Parameter>
|
|
class EggMorph : public Namable {
|
|
public:
|
|
INLINE EggMorph(const string &name, const Parameter &offset);
|
|
INLINE void set_offset(const Parameter &offset);
|
|
INLINE const Parameter &get_offset() const;
|
|
|
|
INLINE bool operator < (const EggMorph<Parameter> &other) const;
|
|
INLINE bool operator == (const EggMorph<Parameter> &other) const;
|
|
INLINE bool operator != (const EggMorph<Parameter> &other) const;
|
|
|
|
INLINE int compare_to(const EggMorph<Parameter> &other) const;
|
|
|
|
INLINE void output(ostream &out, const string &tag,
|
|
int num_dimensions) const;
|
|
|
|
private:
|
|
Parameter _offset;
|
|
};
|
|
|
|
EXPORT_TEMPLATE_CLASS(EXPCL_PANDAEGG, EXPTP_PANDAEGG, EggMorph<LVector3d>);
|
|
EXPORT_TEMPLATE_CLASS(EXPCL_PANDAEGG, EXPTP_PANDAEGG, EggMorph<LVector4f>);
|
|
|
|
typedef EggMorph<LVector3d> EggMorphVertex;
|
|
typedef EggMorph<LVector3d> EggMorphNormal;
|
|
typedef EggMorph<LVector3d> EggMorphTexCoord;
|
|
typedef EggMorph<LVector4f> EggMorphColor;
|
|
|
|
#include "eggMorph.I"
|
|
|
|
#endif
|