39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
// Filename: eggParameters.cxx
|
|
// Created by: drose (16Jan99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#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));
|
|
}
|