function [ point_num, edge_num, face_num, face_order_max ] = ... cube_size_3d ( dummy ) %% CUBE_SIZE_3D gives "sizes" for a cube in 3D. % % Modified: % % 22 July 2007 % % Author: % % John Burkardt % % Parameters: % % Output, integer POINT_NUM, the number of points. % % Output, integer EDGE_NUM, the number of edges. % % Output, integer FACE_NUM, the number of faces. % % Output, integer FACE_ORDER_MAX, the maximum order of any face. % point_num = 8; edge_num = 12; face_num = 6; face_order_max = 4;