The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
24 views

Objective-C (IOS 6.1+): Draw Text in a shape or path

I was wondering if there is an "easy" way to draw text in a shape or a view or a path so that the characters wrap if the text line is too long (even with fonts with different sizes). Below just an ...
0
votes
0answers
16 views

WPF - Is't possible to draw by pencil in the same visual

I have a canvas and want to draw on it by pencil. private void drawingSurface_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { DrawPoint(pointClicked); } ...
0
votes
1answer
9 views

Prevent code execution in Eclipse Graphic Layout preview

I want to draw a custom view, which have the draw method: @Override public void onDraw(Canvas canvas) { paint.setStyle(Paint.Style.FILL); canvas.drawColor(Color.WHITE); ...
0
votes
2answers
22 views

Draw and listview in same activity/screen

Hello i'm a beginner in android programming (and in stackoverflow)! I have an activity with a RelativeLayout (i will call it rl1 to be more easy to understand) layout type. Inside of rl1 i have a ...
2
votes
1answer
19 views

How to draw on Windows Phone like on HTML canvas

I want to draw on Windows Phone 7 (Xna or whatever) like I draw on a HTML canvas, Processing or Java Graphics. Is it possible? I found an answer that say to use the WriteableBitmap class, but how can ...
0
votes
0answers
14 views

Unwanted Warp effect drawing text on path android

I do some tests on drawing text on path. I made a background picture by setting bitmap to canvas. Then, I draw text on path to canvas, rotated by matrix. I have to shorten the code, I will only post ...
1
vote
0answers
152 views

How to locate points in XY plane in android?

I need android+java codes to locate points on a xy-coordinate. So whenever I find some points in my main activity, user can go to another activity(i.e. graph activity) and see the points on the ...
4
votes
2answers
1k views

Delphi 7, how to copy Paintbox content to a Tbitmap?

im working on delphi 7 and i want to how to copy/assign the content of a TpaintBox to a Tbitmap? like this public { Public declarations } BitMap : TBitmap; end; i have a Tbitmap ...
0
votes
0answers
12 views

What container or panel is better to use for DRAWING using extjs 4?

The application I am trying to create is using the following: You select a file and it shows on the tree Drag that file from tree onto Simulation area, please refer to the picture below In this area ...
0
votes
1answer
27 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
4answers
33 views

How can I change the way java.awt.Graphics draws my object?

I'm creating a game and have a class for Player, class for Enemy, and class for Bullet. With the design of my engine, it is most logical to draw my graphics by simply calling for (Shape s : ...
-5
votes
1answer
53 views

C++ equivalent of Java's paintcomponent? [closed]

After a good year on java, I've come to use the paint component so I can "visually" see my programs work. I want to learn c++, but I simply cant visualize my programs by the console. Is there any ...
0
votes
2answers
18 views

Android - how to draw in a multiple view layout

i have to draw a ball inside a view (or anything else that is good for this task). I have followed some tutorial about the matter, but every tutorial that i have found uses only one view (that is ...
0
votes
0answers
9 views

Drawing a curve with given two points and radius in C#

How can i draw in windowsform a curve/arc with given only two points and a radius. there is a way with intersection of two circles with the radius. is there an easy way that can i draw it with ...
0
votes
2answers
74 views

draw multiple lines and delete individual line

I can draw multiple lines on the canvas; they are added to the layer using drawScene dlayerA1.add(line); line.getPoints()[0].x = mousePos.x; line.getPoints()[0].y = mousePos.y; line.getPoints()[1].x ...
0
votes
1answer
294 views

Draw straight line on uiview

I'm writing a small word search game for the iPad. i have a UIViewController and I tile the letters random in a UIView (lettersView). I set the label's tag in a 10x10 size matrix, using a UILabel for ...
0
votes
0answers
22 views

Microsoft Access Drawing Line on Listboxes

I have a problem for drawing line between listbox items. I have 3 ListBoxes; one of them has three columns and other two have one column. What I want is to draw line between items inside these boxes ...
2
votes
3answers
2k views

Android: How to fill color to the specific part of the Image only?

I have Image Like this: Now, i want to fill the color to the Specific part of that image. as like If i select color blue and if i touch on Cap then the cap should be fill with the color Blue. Same ...
0
votes
4answers
2k views

How to pause for 5 seconds before drawing the next thing on Android?

Say I want to draw a line, then wait five seconds, then draw another line. I have a method like this: public void onDraw(Canvas canvas) { int w = canvas.getWidth(); int h = ...
0
votes
2answers
797 views

re-draw an activity in Android

my problem seems simple but I can not manage to find an answer here. I have different activities in one application. Activities start each other. I have a "main-screen" that shows all the different ...
0
votes
2answers
918 views

Drawing Rectangles in iOS

My goal for my app is for the user to be able to sort through different scheduling options by swiping to the left and right of an iPhone screen. How would I draw and remove rectangles as the user ...
-2
votes
1answer
23 views

draw ellipse2d around mouse click java [closed]

I am making a program that draws ellipses when the user clicks the screen. Currently when the ellipse is drawn the origin is (0,0) so it is being drawn from the top right. I want it to be drawn around ...
0
votes
0answers
6 views

How to place a symbol under an arrow in Latex when using tikz package [migrated]

I'm using the tikz package in LaTeX to construct a feedback loop for a control system as a part of a paper on control systems. The problem I'm running into is that I would like to place symbols under ...
0
votes
2answers
62 views

How to easily outline arbitrary (data) structures in text?

So I came across this: mysite/ manage.py mysite/ __init__.py settings.py urls.py wsgi.py and this: root --+---> child1 +---> child2 --+--> ...
2
votes
0answers
16 views

Dotted Line for PDF Rendering in iOS

I wont to know how to render a dotted line on a pdf. CGContextRef currentContext = UIGraphicsGetCurrentContext(); CGContextSetStrokeColorWithColor(currentContext, [UIColor grayColor].CGColor); ...
0
votes
0answers
21 views

Migration from V2 to V3 with an own overlayer

i need help because i am not so good in javascript and i dont habe any experience with the google maps api. I want set my own Marker in the Google Map and if someone click, an own overlay will show. ...
0
votes
1answer
38 views

How to Draw a Circle with Centered Fadeing Out Gradients with HTML5 Canvas?

How can I draw a circle with fadeing out gradients? I mean something like this: http://i.imgur.com/ZJBKe6z.png , getting darker and darker...
0
votes
2answers
4k views

screen and view coordinates in Android

If user touchs the screen I can get coordinates of this touch by using methods of MotionEvent getX() and getY(). But if I understood it right for drawing of canvas other coordinates will be used. ...
0
votes
1answer
47 views

C# draw a moving particle

I am extremely new to c# and I have a simple question: I am supposed to draw a white particle (rectangle) on a black background and move it horizontally from one of the screen to another. I did it ...
0
votes
2answers
46 views

C# Button Shape issue

I recently tried to follow this tutorial here but I don't really understand how it works. My problem is that I don't see any button like the in the image or anything like that, there is no button on ...
0
votes
0answers
32 views

SubClass of UIView never call drawRect:

I created a nib for a custom view. And I set the nib's view Custom Class to "MyView" for example. MyView * myView = [[[NSBundle mainBundle] loadNibNamed:@"MyView" owner:self options:nil] ...
0
votes
1answer
24 views

onTouch() can't draw canvas

onDraw(Canvas canvas) works automatically. In this view onTouch() method listens for touching the screen. I need to redraw the rectangle when I click on the screen but it isn't drawing the rectangle ...
0
votes
1answer
18 views

draw lines to connect two shapes

How to design such function that user can use mouse to draw a line to connect two shapes? I'm using this module in wxpython : wx.lib.ogl. The doc for theses methods are brief and no good demo that ...
0
votes
0answers
31 views

Put a number inside Marker Google Maps v2 android [duplicate]

I have done a cluster for markers in google maps. And works fine, but, now I want to put the number of markers that have been clusterized in the marker that has all of them. But I don't know how to do ...
2
votes
2answers
120 views

Android drawing rectangle timer with animation

I'm trying to have an animation drawing stroke rectangle: Any kickstart for this issue will be helpful. Using Views,Canvas anything. Thanks
-1
votes
1answer
3k views

Draw A Sphere With Opengl

I draw the sphere by OpenGL. This program can draw sphere when "SLIED = STACK". But It's doesn't work when "SLIED not equal STACK". I may be mistake "index array". I want to use VBO and DMA(Dynamic ...
0
votes
0answers
80 views

Picturebox - Get image inside drawn rectangle and show in another Picturebox

I made a search and successfully found a solution to draw a rectangle inside my Picturebox while mousemoving using a class named Rectangulo: Public Class Form1 Dim SelectionBoxObj As New ...
1
vote
2answers
477 views

How to use openGL line drawing in cocos2d

I like to draw a line, but cocos2d inside ccDrawLine serrate, how to draw a blurring of the line, who can help me? ccDrawLine( ccp(StartP.x, StartP.y), ccp(EndP.x, EndP.y) );
2
votes
1answer
35 views

Draw Line in the Direction of the Mouse Cursor

I have a line that I want to be drawn from the player x and y towards the mouse x and y but I want it to just go in the direction of the mouse cursor (I don't want it to be drawn from the player to ...
1
vote
1answer
214 views

How to draw object in java slick with a custom draw Class

I am creating a very simple Java Slick game in 2d. I can use the renderer method int the class that extends the BasicGameState but i would like to render into my game container using a DarwMap class. ...
1
vote
0answers
110 views

Pattern recognition to draw and match shaped

Can anyone kindly point me to any open source program that can draw and match images like the one in here see 1:10 to 4:20. Any clue will be much appreciated. thank you in advance.
2
votes
2answers
303 views

How to wrap an existing memory buffer as a DC in native win32?

I have an image in memory defined of an array 32bit ARGB values. I'ld like to get a DC of that to draw on it and afterwards have the result in the same array. The image never gets displayed on the ...
0
votes
1answer
42 views

Drawing a graph from an array of double values in Java?

I have an array of parsed double values from a csv file (a lot of them) and I would like to create some kind of a graphical graph/diagram prensentation. Is there any API designed for this? or is there ...
0
votes
1answer
37 views

C# canvas going overpainted

I have a canvas in my main window and I draw a line there.When it draws over the width/height of my canvas ,the drawing continues in my main window.... Is there a mistake in my code or is that normal ...
1
vote
2answers
26 views

Simple PixelGrid where I can draw big pixels (choose resolution) with the mouse?

I'm looking for a way in Java to make a simple grid which fills up pixels if u drag the mouse. So just a simple drawing surface... Now it is important that I can choose the resolution or in other ...
0
votes
1answer
36 views

How to draw a dot that leaves a trail

I'm still learning Android, and I decided to download an example paint application to fiddle with that and learn a bit about how Android handles graphics/drawables/painting. The code I have shows a ...
0
votes
3answers
52 views

Can't draw rect in python pygame

I'm just getting started with PyGame. Here, I'm trying to draw a rectangle, but it's not rendering. Here's the whole program. import pygame from pygame.locals import * import sys import random ...
0
votes
1answer
85 views

OpenGL Draw Text Alongside Objects

I have this render function that is working: void RenderFunction(void) { ++FrameCount; glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); drawGraph(); drawAxis(); ...
0
votes
2answers
45 views

Java: Drawing graphics from an array

I'm working on my first java game for a school project, and I'm having some problems drawing the graphics based on information in an array. What I'm basically trying to do is to create a 2D array ...
0
votes
1answer
31 views

Canvas draw shapes on the go

When I run it the browser loads for a while and then displays the whole canvas. How can I make it display as soon as it finishes one loop iteration?And why is this code not doing what I expect it to? ...

1 2 3 4 5 23