Damn i thought I could sketch in Paint, my mistake I need a quick QB64 app.
If we are seeing bottom base of Pryramid the top line of base should be slightly longer than back parallel line at base bottom most and the right corner is top line not bottom, assuming the left lower corner is correct.
If we are seeing bottom base of Pryramid the top line of base should be slightly longer than back parallel line at base bottom most and the right corner is top line not bottom, assuming the left lower corner is correct.
Code: (Select All)
_Title "Quick Sketch" ' b+ 2024-02-19
Screen _NewImage(800, 600, 32)
_ScreenMove 200, 60
Do
While _MouseInput: Wend
mb = _MouseButton(1): mx = _MouseX: my = _MouseY
If mb Then PSet (mx, my)
If InKey$ = "c" Then Cls
_Limit 300
Loop Until _KeyDown(27)
b = b + ...