Tagged Questions
1
vote
1answer
25 views
Grainy Markers with rotation in GoogleMaps
i've create a Maps with any images using this code:
icon_pin = BitmapFactory.decodeResource(getApplicationContext().getResources(), R.drawable.arrow);
int w = icon_pin.getWidth();
int h = ...
0
votes
1answer
16 views
when rotate using matrix, i lose position of image
I am using canvas to draw multiple images (120X120)
when I rotate 60 degrees, the picture stop being centered.
The Image can be anywhere on the screen when rotating, i just want to mantain its center.
...
0
votes
1answer
30 views
Get co-ordinate points of image after rotation and translation?
I currently draw some images (obstacles) to the canvas but I perform context.rotate() and context.translate() before I draw them (at 0,0 point after the point translation).
I need to create ...
0
votes
1answer
17 views
html5 canvas rotate accepting invalid radians
I have no problem rotating a canvas. My question is that in the examples I have seen, and I've verified it, if I use an ever-increasing angle and hence an ever-increasing radian after conversion ...
0
votes
2answers
47 views
getbounds when canvas rotate
I need to get the bounds of an image that is inside a canvas to detec if has been touched or not, but if I rotate the canvas the getbounds() maintain the same values, how con I get the correct values ...
0
votes
0answers
53 views
get current coordinates of line drawn by using canvas after rotating it in android
hi i am new in android actually i m developing a four side polygon with different angles and different sides but the problem in that when i am rotating any side of polygon to certain degree the end ...
1
vote
1answer
150 views
Canvas, animated text rotation
I want to have a animated canvas rotation of a word, while another word on the canvas does not move. But somehow both stand still. What do I have to change?
[link]http://jsfiddle.net/2dszD/8/
var ...
0
votes
1answer
103 views
Collision detection on rotated image in javascript
I have created a js function, that should rotate a image for a collision detection, but the function don't works correct, when the rotation gets over π*1.5 (Pi), will the image crops.
function ...
0
votes
0answers
39 views
Rotating Bitmaps on canvas seems chopped
I am trying to rotate some bitmaps(7 bitmaps) together on canvas. They are all of different sizes. I am using following code to rotate these bitmaps:
Matrix matrix = new Matrix();
...
2
votes
1answer
43 views
Canvas rotation doesn't work properly
I am having troubles trying to rotate a rectangle via JavascriptCanvas API.
Here is the code:
G = {};
// get canvas context
G.ctx = document.getElementById('canvas').getContext('2d');
var x = 200;
...
1
vote
1answer
113 views
how to rotate a shape using rotation matrix?
i'm trying to rotate a square in canvas by javascript using rotation matrix.
here is my code.
function square() {
this.cord=[[0,0],[-25,25],[25,25],[25,-25],[-25,-25]];
}
var a=new ...
0
votes
0answers
31 views
rotate relative to/follow another object canvas
Ok, i need some help. I have drawn a space shuttle. it has a ball near it's bottom right.
The shuttle and ball are two different objects, i position them next to each other in the beginning.
...
0
votes
0answers
29 views
Bitmap is cutting from sides after rotation using matrix
Inside a view, I am drawing a bitmap. User can rotate the bitmap with two fingers and can save the rotated bitmap to gallery. I am using Matrix to rotate bitmap. It is rotating properly but when app ...
0
votes
1answer
58 views
methods to rotate around a point, html canvas
i am trying to rotate a ball around a center point (cx, cy).
when i do:
(function keepDrawing(){
context.clearRect(0, 0, w, h);
ball.x = cx+Math.cos(angle);
ball.y = ...
0
votes
1answer
78 views
How to make find the angle one object must rotate at to face another, JS HTML5 CANVAS
Okay, so I have two objects, a player and a cursor. I have both object's positions, I just need to find the number in degrees or radians the player must rotate to face the cursor.
I'm making this ...
1
vote
0answers
66 views
How to rotate a drawable on canvas in android
Lets say i place mutile drawables on a canvas at different places.
I am willing to rotate each image in a form (certain angle of degree).
So i need code for rotating drawable over canvas.
The thing is ...
3
votes
1answer
60 views
Button text rotate incorrect work with tag singleLine
I have a button:
public class MyButton extends Button{
private float degrees;
public MyButton(Context context) {
super(context);
}
public MyButton(Context ...
0
votes
1answer
38 views
A few matters on cgSceneGraph 1.4.2
I have a few questions about cgSceneGraph 1.4.2
Nodes order
I wonder if there is a way to change the indexing of the nodes inside a canvas. If we have more than one nodes, the order I create them is ...
1
vote
2answers
114 views
Canvas Get Shape Rotation Value
I've searched endlessly for a way to obtain the actual rotation val/deg of a shape on my canvas.
http://www.rfgraham.net/demos/canvas-spinner
As you see here I have a circle with an arrow in the ...
1
vote
1answer
101 views
canvas drawtext direction
how to make that text was written vertically? how to rotate text 90 degrees?
Write each letter individually is stupid, but now ,i don't know another way.
Paint paint = new Paint();
public ...
0
votes
1answer
119 views
Calculate the accurate x and y position of a div inside a rotated div
I've implemented a zoom and crop on the HTML5 Canvas. Zoom is actually increasing the height and width of the Canvas so that it looks zoomed. For crop, I wrote an algorithm to select a rectangular ...
0
votes
2answers
90 views
how to rotate canvas context so that it fully fits the canvas area?
This is a bit lame question, as I am new to canvas. I need to rotate an image that I placed inside a canvas so that it fully fits in the canvas area. In the code snippet given below the image is ...
1
vote
0answers
327 views
android how to rotate canvas rect
i create a rectangle in a specific size, and now i want rotate it to 45 degree, i used canvas.rotate, matrix, but not working. how is the proper way to rotate canvas in android? and i'm curios about ...
0
votes
0answers
305 views
Image rotation javascript canvas
I want to rotate image when up/down keys are pressed. I have following code:
var image = new Image();
image.src = imageURL;
var rotationAngle = 0;
var x,y;//position of image
var update = ...
0
votes
2answers
1k views
How to rotate a rectangle drawn on canvas in Android?
I am drawing a text on android canvas using the following piece of code
Rect rect = new Rect();
paint.getTextBounds(text, 0, text.length(), rect);
canvas.translate(xPosition + ...
3
votes
2answers
186 views
How do I calculate the position of a point in HTML5 canvas after rotation?
After seeing this code, I can't figure out where does the formula x * sina + y * cosa comes from.
After each interval a point rotates around an axes by an a angle.
I need the x and z position of the ...
4
votes
3answers
252 views
Simple 2d surface with arrow in python?
I have not previously worked in python. I need to do a really simple 2d surface where i can place an arrow and then be able to change the position and the angle of the arrow.
I started to build ...
3
votes
2answers
172 views
Android rotating one bitmap around another
Im making a 2d game where my character is controlled by a joystick and I rotate him using canvas.rotate(angel, x, y). My character shoots in the same direction he is heading, now I want to add fire ...
0
votes
0answers
90 views
Resize/rotate/navigate/draw on jpg maps for internal navigation system
Hello I have to develop for my final project at University an internal navigation system as Android app.
Maps of the building are in jpg format; the problem is that I haven't found a way to resize / ...
2
votes
1answer
293 views
Rotate an object gradually to face a point?
I'm making a javascript game in which I want enemy ships to be able to rotate towards a specified point. Their movement can then be calculated from their angle. The following code for the rotation ...
1
vote
1answer
567 views
Three.JS - how to set rotation axis
So I've been playing around with Three.JS (graphics/anim not my strong point) and came up with this, adapted from a tutorial:
Here's a JS Fiddle
As you can see, I'm almost certainly a 3D animation ...
0
votes
2answers
760 views
In the HTML5 canvas, is there a way to rotate images in different angles?
Currently there are are two images I would like to rotate on the canvas, I tried save and restore but didn't work
function SetCanvas()
{
var canvas = ...
0
votes
1answer
320 views
Positioning an HTML5 Canvas Element
I am completely new to HTML5 and have been reading about it for the past few days mainly because I wanted to create a rotating image to put in a <div>. I found a code that does exactly what I ...
1
vote
2answers
177 views
fake a View to portrait inside landscape-mode
I have an Activity in Landscape-Mode. Inside there is a Custom-Title-View aligned like this:
Is it possible to keep the landscape mode and 'fake' this one View into portrait-mode like this:
I ...
1
vote
1answer
1k views
Android - paint rotated bitmap into a specific location on canvas
Ok maybe I am missing something here, but I am stuck for hours. I make an app where the user paints a dimension line over a picture. Now I want to paint also some selection points that show that the ...
0
votes
2answers
104 views
Why won't my tank rotate properly?
I have a moving tank: http://www.exeneva.com/html5/movingTankExample/
The tank uses a finite state machine for the direction it is facing, with default set to "up":
var tankDir = "up";
The ...
2
votes
3answers
694 views
JQuery / Canvas / Javascript … What can I use to move or rotate image with the mouse into a div?
I'm working on a interactive website which uses PHP/Javascript/JQuery.
On a page, I want to propose to a visitor to move and/or rotate images with his mouse in order to create a new composition (like ...
2
votes
1answer
515 views
HTML5 Canvas rotate in Google Chrome - Terrible rendering
When a photo is displayed on a HTML5 canvas element, and is rotated, the result looks fine in FireFox but terrible in Chrome. It seems as if Google Chrome does not know how to smooth the rotated ...
1
vote
1answer
143 views
How to get position in rotated VisualTree?
I have canvas inside the canvas and other elements inside canvas father.
But my grandfather canvas is rotated.
How I get real position in childrens (relative do grandFather)?
Fail:
...
2
votes
0answers
282 views
drawing on rotated canvas (set diry regions)
I'm trying to create a custon ViewGroup that will display its child rotated. It seems to work fine, except not the whole canvas is being redrawn - it seems that only the part that was covered by ...
3
votes
2answers
520 views
how to detect point on canvas after canvas rotation
I am working on html5 canvas app in which i draw rectangle on canvas.
Canvas is tarnslate to center position
Use fillRect function to draw rectangle
Canvas is position absolute with respect to ...
1
vote
2answers
311 views
Rotating a canvas is only working the first time
I'm trying to rotate a canvas on every mouseover, but it's only working the first time.
You can play with it here: http://jsfiddle.net/h3Z7j/2/
The reason I'm rotating it 0 degrees is to convert it ...
2
votes
1answer
1k views
Mouse position within rotated rectangle in HTML5 Canvas
Rotation of rectangles within an html5 canvas is being stored in radians. In order to find whether subsequent mouse clicks are within any given rectangle, I am translating the mouse x and y to the ...
1
vote
2answers
413 views
Rotating full window canvas
I am doing simple (for now) application to draw on canvas.
I can draw simple shapes like putting dots, squares, lines, but when I try to rotate whole image - nothing happens. No errors, no rotation. ...
1
vote
1answer
591 views
Trying to use Canvas and DrawImage to display low-rate video at 90 degrees
I would like to display rotated camera video at a rate of 2 frames/second. The following code displays a 240 x 320 image rotated at 90 degrees. The image does not update unless I refresh the ...
1
vote
0answers
118 views
Canvas width makes browser hang up
Below function is used to draw onto a canvas:
function draw(id)
{
var canvas=document.getElementById(id);
if(canvas==null)
return false;
var ...
1
vote
1answer
352 views
Android : canvas.drawoval() + rotation
I'd like to draw an oval, but I'd like to be able to rotate it. I know that I can use canvas.drawOval(...) and canvas.rotate(...). However, I want to just rotate my oval and not the whole canvas; ...
1
vote
2answers
2k views
How to rotate the existing content of HTML5 canvas?
Is there a way to rotate the existing content of HTML5 canvas by Javascript? I know it's possible to rotate an image that will be drawn on to canvas, but I want to rotate the content that has been ...
1
vote
1answer
466 views
Rotating an Android View
I want to rotate an Android View with API level 8. For example, I want to rotate an EditText by 90 degrees so that when the user enters text into a left justified EditText, the first character is at ...
2
votes
1answer
1k views
Rotating jQuery Flot Value Labels 90 Degrees
I am using Value Label plugin for jQuery-based Flot (to generate Graphs).
I would like to rotate the values to 90 degrees, so that the label values do not overlap each other. Please note that I am ...

