52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
// Filename: eggParameters.cxx
|
|
// Created by: drose (16Jan99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001, 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://www.panda3d.org/license.txt .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d@yahoogroups.com .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "eggParameters.h"
|
|
|
|
#include <string>
|
|
|
|
static EggParameters default_egg_parameters;
|
|
EggParameters *egg_parameters = &default_egg_parameters;
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggParameters::Constructor
|
|
// Access: Public
|
|
// Description: Initializes all the parameters with default values.
|
|
////////////////////////////////////////////////////////////////////
|
|
EggParameters::
|
|
EggParameters() {
|
|
_pos_threshold = 0.0001;
|
|
_normal_threshold = 0.0001;
|
|
_uv_threshold = 0.0001;
|
|
_color_threshold = 1.0/256.0;
|
|
|
|
_table_threshold = 0.0001;
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: EggParameters::Copy Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
EggParameters::
|
|
EggParameters(const EggParameters &other) {
|
|
memcpy(this, &other, sizeof(EggParameters));
|
|
}
|