function [ point_num, line_num, line_data_num ] = xyl_example_size ( ) %*****************************************************************************80 % %% XYL_EXAMPLE_SIZE sizes the data to be created by XYL_EXAMPLE. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 01 January 2009 % % Author: % % John Burkardt % % Parameters: % % Output, integer POINT_NUM, the number of points. % % Output, integer LINE_NUM, the number of lines. % % Output, integer LINE_DATA_NUM, the number of line items. % line_data_num = 15; line_num = 3; point_num = 13; return end