Navigation

quasi_uniform_volume

EXPRESS specification:

ENTITY quasi_uniform_volume
SUBTYPE OF ( b_spline_volume);
END_ENTITY;

References (1):

Name Type Referred through Express-G
b_spline_volume Entity
Subtype
No Diagram

Inheritance graph

ENTITY quasi_uniform_volume;
ENTITY representation_item;
name  :  label;
ENTITY geometric_representation_item;
DERIVE
dim  :  dimension_count :=  dimension_of(SELF);
ENTITY volume;
ENTITY b_spline_volume;
u_degree  :  INTEGER;
v_degree  :  INTEGER;
w_degree  :  INTEGER;
control_points_list  :  LIST [2:?] OF LIST [2:?] OF LIST [2:?] OF cartesian_point;
DERIVE
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 );
ENTITY quasi_uniform_volume;
END_ENTITY;