63 lines
2.0 KiB
C
63 lines
2.0 KiB
C
// Filename: eggMiscFuncs.h
|
|
// Created by: drose (16Jan99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 EGGMISCFUNCS_H
|
|
#define EGGMISCFUNCS_H
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// eggMiscFuncs.h
|
|
//
|
|
// This contains the prototypes for functions that are useful to
|
|
// internal egg code. Also see eggUtilities.h, which contains
|
|
// functions that may be useful to the rest of the world.
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "pandabase.h"
|
|
#include "lmatrix.h"
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: enquote_string
|
|
// Description: Writes the string to the indicated output stream. If
|
|
// the string contains any characters special to egg,
|
|
// writes quotation marks around it. If always_quote is
|
|
// true, writes quotation marks regardless.
|
|
////////////////////////////////////////////////////////////////////
|
|
ostream &
|
|
enquote_string(ostream &out, const string &str,
|
|
int indent_level = 0,
|
|
bool always_quote = false);
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: write_transform
|
|
// Description: A helper function to write out a 3x3 transform
|
|
// matrix.
|
|
////////////////////////////////////////////////////////////////////
|
|
void
|
|
write_transform(ostream &out, const LMatrix3d &mat, int indent_level);
|
|
|
|
|
|
#include "eggMiscFuncs.I"
|
|
|
|
#endif
|
|
|