2
votes
2answers
125 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
0
votes
0answers
13 views

How to progressively redraw a drawing in android?

I am making an android application where the user can draw something and after that by clicking a button the drawing will be redrawn. I have done this so far, but I want the redrawing to be ...
0
votes
1answer
117 views

How to animate drawings in pygame (movement)

I have been trying to animate drawing elements without success. I can animate imported images, but when I try to animate drawings generated by pygame they remain static. Edit: By "animate" I mean "to ...
2
votes
1answer
101 views

draw events not sent by gdk_window_invalidate_rect

I am wanting to display the current situation on a simulated battlefield using Cairo on GTK window. My application has to use a provided framework which works in its own main loop. So, I can not call ...
4
votes
2answers
508 views

Draw on a canvas with delay - “make onDraw() slow down”

I use functions for canvas like drawCircle and drawPoint in android. This works fine. But the problem now is to draw these different items with a delay, so it looks like an animation. What kind of ...
3
votes
2answers
284 views

Animating Text in Canvas - Android

Hi I have an app in android that draws texts on Canvas using canvas.drawText(). Now, I would like to animate the drawing of text such that it will be colored from left to right similar to a karaoke ...
0
votes
0answers
156 views

Drawing animation of fancy text

I am working on an application which takes user input (string) and stores it. When the app is started again it displays the stored text. I want the displayed text to be like an animation. Example ...
0
votes
0answers
38 views

Show saved Gesture the same way as user drew it

Is there any way in Android to draw the gestures that are stored in the same way that user has drawn it? I mean, If I have saved "G" then while listing the stored gestures, rather than displaying "G" ...
1
vote
1answer
460 views

Drawing Text on canvas

I'm trying to draw text using canvas. I checked out everywhere but those examples rather complex, I could draw text on canvas but it's not showing like this photo. I found this code and it's ...
0
votes
1answer
122 views

XNA how to make simulate animation from a single Update call

I want to capture a Flick touch event in Update method. In there, I increment the Figure in Y direction, for example 70. When drawing, the figure get drawn like jumping. How do I make it so it looks ...
0
votes
3answers
665 views

Animating a Rectangle in Java

I've been trying to get this rectangle to move that I've created using a for loop. All that's happening with this code is that there is an original rectangle and then a new one next to that rectangle. ...
2
votes
2answers
798 views

Animate a path like it's drawn on a canvas

I'm a newbie in WPF and please, guide me in the right direction for this problem. I have built a WPF application which contains all the functionality of that of a road map view control. I.e. the road ...
1
vote
1answer
290 views

Cocos2d: how to make a drawn circle doing scale or fade out animation

I know how to draw a circle in cocos2d & I know how to do cocos2d animation (scale and fade) with a ccsprite(loaded from a png file). But I am wondering is it possible to store a drawn circle(in ...
0
votes
0answers
288 views

android view draw performance

I have a custom view and in onDraw() method I draw some images on canvas depending on some parameters. But I have a performance issue, because while this view plays a rotate animation, every time ...
1
vote
0answers
397 views

Android: Curve drawing animation

I can draw a curve (e.g. cubic bezier) using Path class and on the other hand I can animate whole View, but is there any help from android 2.x framework when I want to animate a curve drawing?
5
votes
3answers
4k views

Creating a 2D polygon in XNA

I have some sort of a problem. I'm new to XNA and want to draw a polygon shape that looks something like this (In the end, I want these point to be random): So I read some articles and this is what ...
0
votes
1answer
978 views

How I can move each rectangle separately?

I have five shape draw able rectangular, I have to set the rectangle at angle of (-20,-15,-10,-5,0)Degree. Each Rectangular have four colors shade. Now I need to animate each rectangle one by one and ...