44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
/**
|
|
* 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."
|
|
*
|
|
* @file xFileFace.cxx
|
|
* @author drose
|
|
* @date 2001-06-19
|
|
*/
|
|
|
|
#include "xFileFace.h"
|
|
#include "xFileMesh.h"
|
|
#include "eggPolygon.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
XFileFace::
|
|
XFileFace() {
|
|
_material_index = -1;
|
|
}
|
|
|
|
/**
|
|
* Sets the structure up from the indicated egg data.
|
|
*/
|
|
void XFileFace::
|
|
set_from_egg(XFileMesh *mesh, EggPolygon *egg_poly) {
|
|
// Walk through the polygon's vertices in reverse order, to change from
|
|
// Egg's counter-clockwise convention to DX's clockwise.
|
|
EggPolygon::reverse_iterator vi;
|
|
for (vi = egg_poly->rbegin(); vi != egg_poly->rend(); ++vi) {
|
|
EggVertex *egg_vertex = (*vi);
|
|
Vertex v;
|
|
v._vertex_index = mesh->add_vertex(egg_vertex, egg_poly);
|
|
v._normal_index = mesh->add_normal(egg_vertex, egg_poly);
|
|
_vertices.push_back(v);
|
|
}
|
|
|
|
_material_index = mesh->add_material(egg_poly);
|
|
}
|