Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
1k views

iphone compass tilt compensation

has anybody already programmed a iphone compass heading tilt compensation? i have got some approaches, but some help or a better solution would be cool! FIRST i define a vector Ev, calculated out of ...
4
votes
1answer
5k views

How can I use SensorManager.getOrientation for tilt controls like “My Paper Plane”?

The Android game My Paper Plane is a great example of how to implement tilt controls, but I've been struggling to understand how I can do something similar. I have the following example that uses ...
2
votes
0answers
50 views

How to test tilt effect in iphone simulator?

I am currently making an ios game in a program called istencyl for a contest on there website. The game involves rolling a character around with the accelerometer. Everything would be going fine but ...
2
votes
1answer
1k views

Pitch problems in landscape mode

I need to read the pitch value (how much the phone is tilted backwards and forwards) both in portrait and landscape modes. using the code bellow in portrait I get my value from value[1] with 0.0 when ...
1
vote
2answers
146 views

Semi - tilted div border

I have a div and i need it to have a tilted border on top and bottom and a straight one on left and right.Also the corners should be rounded. I don't know if I explained it clear. <div ...
1
vote
1answer
272 views

How to calibrate the accelerometer angle based on how the users is holding the device with Corona SDK?

Hey guys, I just finished my app with Corona SDK and thought I'd try to make my first game. As my first app was learning about the accelerometer I thought my game should be with that too. So I ...
1
vote
2answers
484 views

Making ball roll with iphone being tilted using Accelerometer

I am making an iphone app where a ball will roll around the screen based on how the user tilts the device. If the device is lies flat on the table theoretically the ball would not move. If the ...
1
vote
3answers
2k views

How can i test tilt efftect? - IPhone Simulator

I am trying to write a game. That game uses tilt effect, but i don't know how to test it on Iphone Simulator 3.0. I search it on internet, but the result is zero. How can i...?
0
votes
1answer
24 views

how to use tilt to cache / precompile slim file in sinatra views

Slim documentation says that the template/.slim file can be compiled and cached with tilt. I am using slim for the views in sinatra. How to precompile the file / is it possible to view the compiled ...
0
votes
0answers
52 views

Make my Xna camera tilt (up/down rotation)

I'm writing my own Camera class and I'm having trouble fixing my pitch rotation (or tilting as the wikipedia photography page refers to it). Long story short, this is what I currently have: public ...
0
votes
1answer
32 views

HTML5 video tilted or must use flash?

I want to use for new website project video player in tilted mode. For example in 30° angle ( 1/6 radian ) Is it possible to do with use of JS/HTML5 video tag or I do have to use flash video player? ...
0
votes
1answer
37 views

Android onPause() and device tilt

I am trying to end all of my android activities by called finish() under the onPause method. Now this was working fine until I noticed that the activity finished when I tilted the device (Galaxy tab). ...
0
votes
0answers
38 views

Updating a Tilt::Template doesn't affect the compilation of an asset in the pipeline

I wrote a custom Tilt Template for a custom file extension and set it up with Sprockets in my Rails engine gem. I am able to request files with that extension from /assets and get a Tilt processed ...
0
votes
1answer
66 views

Can anyone tell me whether gravity sensor is as a tilt sensor to improve heading accuracy?

X and Y axis of magnetometer can be used to calculate the heading of north when phone is level to the local ground. But when rolling or pitching the phone, we should use roll and pitch degree to ...
0
votes
0answers
67 views

Rotating an image along the y-axis Transform to duplicate “folder Icons in explorer”

I would like to take an image and rotate it along the z axis.. I know how to rotate an image like 20 degrees to the right... no problem.. I would like to also tilt the image backwards, similar to how ...
0
votes
1answer
155 views

Using Tilt to render Sass template with Compass

I am working on a static site generator (Staticpress) that uses Tilt to handle rendering. Out of the box, Tilt can render sass just fine; however when I render a sass template that tries to @import ...
0
votes
1answer
787 views

Make an object rotate to angle of tilt with accelerometer in CoronaSDK?

with my first game I have a doodle I control with the accelerometer. In many games I've seen that when the device is titled the object (in my case a doodle fish) rotate towards the tilt so it gives an ...
0
votes
1answer
229 views

Tilt template engine initialization

I just install tilt : gem list tilt (1.2.2) ruby -v ruby 1.8.6 (2009-06-08 patchlevel 369) [universal-darwin9.0] And I simply try the basic example from https://github.com/rtomayko/tilt tilt.rb ...
0
votes
2answers
198 views

How to intercept tilting in Android?

I would like to write a program using tilting functionality in android. Is there any way to intercept it? What do I get back? a vector indicating the direction of the tilt?
0
votes
2answers
262 views

How to use the “tilt” feature on an iphone

I have been doing a lot if research into this, but I havent found an answer. Basically, I'm making a dice rolling application for the iPhone in Objective-C. I want to be able to use the "tilt" ...
0
votes
0answers
294 views

Can GStreamer control pan/tilt on a UVC camera?

I have a Logitech Orbit Sphere AF USB webcam. I'm trying to write a recorder program that displays and records video and audio. Ideally it also has the ability to pan/tilt. (note: I am writing in ...
0
votes
1answer
623 views

iPhone tilt direction

I am making a simple, tilt controlled game using UIKit. So far, when I tilt the device the character moves in the appropriate direction. What I want him to do is to change the direction he is facing ...
0
votes
0answers
294 views

Iphone compass tilt parasite

I use the heading value (return by the locationManager:didUpdateHeading:) but when the iphone is tilted this value sometimes change (from 5 to 50 degrees). Is someone faced the same problem? Is ...
0
votes
1answer
123 views

animation starts when tilting

i like to start this animation when tilting. it doesn't, so i suppose some essential code is missing. please help: - (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration ...
0
votes
3answers
734 views

Vectors rotations 3D camera tiliting

Hopefully easy answer, but I cannot get it. I have a 3D render engine I have written. I have the camera position, the lookat position and the up vector. I want to be able to "tilt" the camera left, ...
0
votes
1answer
982 views

Why isn't my app getting mouse wheel tilt messages?

In this question How to detect mouse wheel tilt an answer is posted and accepted that shows the code needed. I've implemented that code in my application's existing WndProc method (which is working ...