
/* 
	dim5.p

	creates a 5-dimensional package using
	the currently selected screenset
*/

#include <builder.def>


#include <dim5.pd>

package [PACK_NAME]
{
screen_name [SCREENSET_NAME]
ACTIVE
dimension [DIM_0_NAME] { 
	min DIM_0_MIN 
	max DIM_0_MAX
	boundary DIM_0_BOUNDARY
	}
dimension [DIM_1_NAME] { 
	min DIM_1_MIN 
	max DIM_1_MAX
	boundary DIM_1_BOUNDARY
	}
dimension [DIM_2_NAME] { 
	min DIM_2_MIN 
	max DIM_2_MAX
	boundary DIM_2_BOUNDARY
	}
dimension [DIM_3_NAME] { 
	min DIM_3_MIN 
	max DIM_3_MAX
	boundary DIM_3_BOUNDARY
	}
dimension [DIM_4_NAME] { 
	min DIM_4_MIN 
	max DIM_4_MAX
	boundary DIM_4_BOUNDARY
	}

}
