|
u_upper
|
:
|
INTEGER := SIZEOF(control_points_list) - 1;
|
v_upper
|
:
|
INTEGER := SIZEOF(control_points_list[1]) - 1;
|
w_upper
|
:
|
INTEGER := SIZEOF(control_points_list[1][1]) - 1;
|
control_points
|
:
|
ARRAY [0:100] OF ARRAY [0:100] OF ARRAY [0:100] OF cartesian_point := make_array_of_array_of_array
(control_points_list,0,u_upper,0,v_upper,0,w_upper );
|
|