So you're drawing a triangle of # that starts skinny in the top left and grows to the right with a height and width of n?
As an example, Height 3 would be:
#
##
###
I'm not following your questions, but the code seems pretty reasonable... though the use of recursion feels pretty unnecessary when you could easily just use a nested for loop.