示例#1
0
inline
void OctreeVisitor<TYPE>::visitRootV
(
   const OctreeCell* pRootCell,
   const OctreeData& octreeData
)
{
   visitRoot( pRootCell, octreeData );
}
示例#2
0
文件: Main.c 项目: Winter-M/Trot
int main(int argc, char **argv) {
	pt_node *node;
	if(argc < 2) {
		fprintf(stderr, "Argument required.\n");
		return -1;
	}

	node = buildAST(argv[1]);
	return visitRoot(node);
}