Share

scn_node

C++

struct scn_node {
  double vertex[3];
  double normal[3];
  long left;
  long right;
};

File

scene.h

Members

Members Description
left Address of the left node
right Address of the right node

Description

Description of the temporary records used to keep the polygonal mesh vertices. This record belongs to the temporary file VERTEX.$AS which is a binary tree of all the vertices of a given polygonal mesh.

Was this information helpful?