Nodes of different colours represent the following:
Solid arrows point from a file to a file which depends upon it. A file is dependent upon another if the latter must be compiled before the former can be. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Nodes of different colours represent the following:
Solid arrows point from a file to a file which depends upon it. A file is dependent upon another if the latter must be compiled before the former can be. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
module types_changes_component_wrapper use classes_moved_coordinates, only: Abstract_Moved_Coordinates use classes_move_tuner, only: Abstract_Move_Tuner implicit none private type, public :: Changes_Component_Wrapper class(Abstract_Moved_Coordinates), allocatable :: translated_positions, & rotated_orientations class(Abstract_Move_Tuner), allocatable :: translation_tuner, rotation_tuner end type Changes_Component_Wrapper end module types_changes_component_wrapper