/*
======================================================================
libinf.c

Eric Haines
Ernie Wright  01 Jun 05

Modified for use in a LightWave Modeler plug-in.  Everything here went
away except for the tesselation resolution.
====================================================================== */

/*
 * libinf.c - general info routines.
 *
 * Author:  Eric Haines
 *
 */

#include "lib.h"


int gU_resolution = OUTPUT_RESOLUTION;
int gV_resolution = OUTPUT_RESOLUTION;


void lib_set_polygonalization( int u_steps, int v_steps )
{
   if ((u_steps > 0) && (v_steps > 0)) {
      gU_resolution = u_steps;
      gV_resolution = v_steps;
   }
}

