0
votes
1answer
18 views

Pygame drawing doesn't work correctly

I have a problem with drawing a simple rectangle on the screen. I've no clue why it fails to draw, I've tried several things: drawing it on the background surface, changing the order of the function ...
0
votes
0answers
14 views

Slick2D Only drawing when the cursor isn't focused on it

When I draw something with Slick2D the drawing only shows up when I select another window but the screen is black otherwise. Is this a known issue, glitch, or did I do something wrong?
-1
votes
1answer
50 views

Android Drawing framework [closed]

I'm searching for a drawing framework/sdk, not an OpenGL sdk, that has build in: drawing lines, shapes, etc; adding background pictures; modifying pictures, erase, undo, etc. (Something like Paint) ...
0
votes
2answers
286 views

How do i Draw on a Frame in Qt?

Ok so i have created my UI with the drag and drop part of Qt and in the Ui i created a "Tab Widget" inside another "Tab Widget". Now, inside the second Tab Widget i created a Frame My Question is, ...
0
votes
3answers
1k views

Touch draw android paint color

I am using this piece of code for user to draw o line with a finger: public class DrawingView extends View { private Paint paint; private Path path; public DrawingView(Context context , ...
2
votes
1answer
450 views

how do i clear a draw uiview?

I am currently trying to refresh or clear my UIView draw but a lot of methods aren't working. I tried: self.Draw.clearsContextBeforeDrawing [self.Draw setNeedsDisplay]; ...
3
votes
2answers
1k views

Any alternative to calling getGraphics() which is returning null

Frequently when I call getGraphics() it returns null, even if I set the xxx.getGraphics(); xxx to be visible (as a Google search shows...) But this doesn't work, and this frustrates me as it is easy ...
1
vote
3answers
288 views

make pause between drawing two draws

I want to make a pause between drawing two draws. I've tried Thread.sleep, handlers, asyncTask and got same result - when activity starts up I must wait for a time that I set to see the first draw, ...
0
votes
1answer
135 views

how to specify image dimension/size when doing a drawAtPoint?

I have some images and I want to draw them using drawAtPoint ( I am using a table of 100s of cells and doing the draw as recommended for making the scrolling faster). Now, these images are kind of ...
6
votes
2answers
6k views

Android canvas draw line - make the line thicker

This seems like it should be somewhat trivial, however in my android app, I am using canvas to draw a series of lines that are connected together. For some reason my lines are very very faint and ...
0
votes
0answers
1k views

Drawing lines in a UIView

I need to draw some straight lines in a UIView which also contains a variety of UI elements. I need straight black lines about 1 or 2 points in width, easily drawn and redrawn with new start and end ...
1
vote
2answers
1k views

How to use drawRect to draw in a existing view?

I'm doing a GPS tracking app. Every time it receives a Latitude/Longitude it converts it to (x,y) coordinates and calls drawRect to draw a line between two (x,y) pairs. However, the drawRect method ...
0
votes
1answer
354 views

Objective-C Drawing without drawRect: shapes won't display

I have a class called mapWindow which is hooked up to a window in IB. No matter what, the red circle which I want the program to render won't show up unless the code is under drawRect or I move the ...
1
vote
1answer
994 views

draw multiple curves in WinForms picturebox

I am working on a program which I want to draw diode curves in a WinForms application. I have a list of diode names and I have theire points as you can see at the right side of the picture. That is ...
0
votes
3answers
625 views

Need help with drawing on a custom made view

I need your experience. Problem : I need to be able to draw thing (rect, circ,etc) on one part of a FlipperView.... My main.xml has a main linearLayout. In this LinearLayout I have a ViewFlipper with ...
0
votes
3answers
612 views

drawing an animated line that erases itself

Can someone advise what method is used to for the following scenario: user touches the screen then drags their finger away from this point and a line is drawn, but as they move their finger up and ...
1
vote
2answers
502 views

How to implement a DrawLine function?

Question : Is there any better way to implement a function that draws line on the screen other than drawing circles on the input points ? Details : I am trying to write a function which basically ...
2
votes
4answers
6k views

How to draw rectangle on MouseDown/Move c#

I am not quite sure how to draw a Rectangle (not filled) when I drag my mousedown while left clicking the mouse. I have this so far private void canevas_MouseDown( object sender , ...
3
votes
1answer
1k views

Let users draw a line (arrow) on a div/img

Using the jQuery plugin: imgareaselect (http://odyniec.net/projects/imgareaselect/), I let users select areas of an image to add comments (just like flickr). I'm aiming to let users draw arrows ...
1
vote
2answers
585 views

Drawing tools in C# + library code or component

Hi Can any one introduce me a code library or framework to use for drawing in C# like DRAWCLI Sample in VC++ ? thx
12
votes
6answers
13k views

android: quality of the images resized in runtime

I want to show images using drawBitmap() method. But before I want to resize it according screen dimensions. I have a problem with quality of result image. You can see screenshots and test code below. ...
2
votes
2answers
411 views

How to draw hypergraphs?

I've searched for a long time a program that could draw hypergraphs, I've onl found the (marvelous) dot program on linux that can draw graphs. Anyone knows an equvalent for hypergraphs?