answersLogoWhite

0

You need the screen coordinates of the end-points. That's another whole topic.

Say the end-points are (A,B) and (C,D).

To draw a solid line connecting these points:

LINE (A,B) - (C,D)

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you draw circle in qbasic?

In QBasic, you can draw a circle using the CIRCLE statement. The syntax is CIRCLE (x, y), radius, where (x, y) is the center of the circle, and radius is the radius of the circle. For example, CIRCLE (100, 100), 50 would draw a circle with a center at coordinates (100, 100) and a radius of 50 pixels. You can also specify a color by adding a third parameter, like CIRCLE (100, 100), 50, 15 for a circle in color 15.


How do you draw an arc in qbasic?

To draw an arc in QBasic, you can use the Circle statement, specifying the center coordinates, radius, and the starting and ending angles. The syntax is Circle (x, y), radius, start_angle, end_angle. For example, Circle (100, 100), 50, 0, 90 would draw a quarter-circle arc from 0 to 90 degrees centered at (100, 100) with a radius of 50.


How draw solar system in qbasic?

In QBASIC, you can draw basic shapes using the LINE and CIRCLE commands. To draw a simple representation of the solar system, you would need to create circles representing the sun and planets, then use the LINE command to draw lines connecting the planets to the sun in their respective orbits. You can also add text labels for each planet to make it more informative. Remember, QBASIC is a basic programming language, so the graphics may be limited in detail.


How do you draw a boat floating in river at qbasic?

You need to draw this \______/ floating on water to show a floating boat.


How yo draw a star in qbasic?

In QBASIC, you can draw a star using the LINE and CIRCLE commands to create a star shape. For example, you can use the LINE command to connect points that form the star's points. Here's a simple example: SCREEN 12 LINE (100, 100)-(200, 100), 15 ' Draw horizontal line LINE (150, 50)-(150, 150), 15 ' Draw vertical line LINE (100, 100)-(200, 100), 15 ' Draw diagonal lines to form star points Adjust the coordinates to modify the star's size and shape.


How do you draw a lollipop?

draw a straight line then draw a circle on that line at the top then draw a swirl in the circle


How do you draw a tutu?

You make a circle then put a circle in it, then draw lines


How do you draw a panda?

Draw a big circle for the body.Draw a smaller circle on top of that circle to be the head. Draw three little circles inside the top circle to be the eyes and nose. Draw two little circles on top of the top circle for the ears. Draw four cylinders off the large circle for the legs.


How do you draw a Hampie?

Draw a circle. Draw an oval under the circle. Draw two eyes on the circle. Now, draw a camel hump in the middle of the circle connected to two lines reaching to each side of the circle. On the top of the circle draw this: VVV. On the oval draw two of these: U. Then, draw three lines in each U. Next, draw two of the U shapes on the bottom of the oval. Finally, draw three lines inside of the U shapes, and you have a Hampie!


How do you draw a portal?

draw a circle then draw a bunch of squiggly lines in it if you're really fancy, draw another circle within that circle and outside of it boom that's your portal


What does it mean to circle a circle?

You draw a circle around a circle.


How do you write a qbasic program to find area and circumerence of a circle?

Write a program that calculates the area of a triangle in QBASIC