67 lines
2.0 KiB
C++
67 lines
2.0 KiB
C++
// Filename: eggCurve.cxx
|
|
// Created by: drose (15Feb00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "eggCurve.h"
|
|
|
|
#include "string_utils.h"
|
|
#include "pnotify.h"
|
|
|
|
TypeHandle EggCurve::_type_handle;
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggCurve::string_curve_type
|
|
// Access: Public, Static
|
|
// Description: Returns the CurveType value associated with the given
|
|
// string representation, or CT_invalid if the string
|
|
// does not match any known CurveType value.
|
|
////////////////////////////////////////////////////////////////////
|
|
EggCurve::CurveType EggCurve::
|
|
string_curve_type(const string &string) {
|
|
if (cmp_nocase_uh(string, "xyz") == 0) {
|
|
return CT_xyz;
|
|
} else if (cmp_nocase_uh(string, "hpr") == 0) {
|
|
return CT_hpr;
|
|
} else if (cmp_nocase_uh(string, "t") == 0) {
|
|
return CT_t;
|
|
} else {
|
|
return CT_none;
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: CurveType output operator
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
ostream &operator << (ostream &out, EggCurve::CurveType t) {
|
|
switch (t) {
|
|
case EggCurve::CT_none:
|
|
return out << "none";
|
|
case EggCurve::CT_xyz:
|
|
return out << "XYZ";
|
|
case EggCurve::CT_hpr:
|
|
return out << "HPR";
|
|
case EggCurve::CT_t:
|
|
return out << "T";
|
|
}
|
|
|
|
nassertr(false, out);
|
|
return out << "(**invalid**)";
|
|
}
|
|
|