63 lines
2.1 KiB
C++
63 lines
2.1 KiB
C++
// Filename: eggMorph.h
|
|
// Created by: drose (29Jan99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#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, double threshold) 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<LVector4>);
|
|
|
|
typedef EggMorph<LVector3d> EggMorphVertex;
|
|
typedef EggMorph<LVector3d> EggMorphNormal;
|
|
typedef EggMorph<LVector3d> EggMorphTexCoord;
|
|
typedef EggMorph<LVector4> EggMorphColor;
|
|
|
|
#include "eggMorph.I"
|
|
|
|
#endif
|