Example #1
0
//컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴
//Procedure		nz_draw_object
//Author		Paul.   
//Date			Wed 28 Oct 1998
//------------------------------------------------------------------------------
void btree::nz_draw_object(CLib3D *lib3d,ViewPoint* vp)
{
	g_lpLib3d=lib3d;
	View_Point=vp;

//	bool oldState2=current_screen->DoSetMipMap(false);

	//Check to see if the binary tree is empty

	if(start_index != NULL)
	{
		nz_recurse(start_index);	
	}

//	current_screen->DoSetMipMap(oldState2);
}
Example #2
0
//컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴
//Procedure		nz_draw_object
//Author		Paul.
//Date			Wed 28 Oct 1998
//------------------------------------------------------------------------------
void btree::nz_draw_object(Display *screen,ViewPoint* vp)
{
    current_screen = screen;
    View_Point=vp;

    bool oldState2=current_screen->DoSetMipMap(false);

    //Check to see if the binary tree is empty

    if (start_index != NULL)
    {
        nz_recurse(start_index);
    }

    current_screen->DoSetMipMap(oldState2);
}