print_hsl Subroutine

private impure elemental subroutine print_hsl(this)

Type Bound

color

Arguments

Type IntentOptional Attributes Name
class(color), intent(in) :: this

Called by

proc~~print_hsl~~CalledByGraph proc~print_hsl color%print_hsl proc~print color%print proc~print->proc~print_hsl

Source Code

   elemental impure subroutine print_hsl(this)
      class(color), intent(in) :: this
      print '(a, 3(f8.4, 2x))', "hsl: ", this%hl, this%sl, this%vl
   end subroutine print_hsl