I'd like to have a function that returns the y value at a certain x in a curve that's shaped like a half circle. This hypoth half circ could be sized as the one you'd see by this code (left "leg" is X=0):
and another were its shaped like a quad of a circle that's not "standing on it's left leg" as would be the case if chg 90 to 0 above, but instead lying down:
I'm thinking something without actually having to draw it and Point(x,y) my way up to find the roof.
For ang# = -90 To 90 x# = x# + Cos(ang) * 1 Y# = y# + Sin(ang) * 1 plot 100+x, 100+y next
and another were its shaped like a quad of a circle that's not "standing on it's left leg" as would be the case if chg 90 to 0 above, but instead lying down:
o o o Y at x =??
o o
o o
X->
I'm thinking something without actually having to draw it and Point(x,y) my way up to find the roof.