Questions tagged [tilt]

Tilt is a thin interface over a collection of Ruby template engines, that attempts to make their usage as generic possible.

118 questions
1
vote
0 answers

Moving an image on tiling phone

I am trying to move an image on in a particular direction on tilting the phone something like in temple run.but I did't found much info about how to implement it.Could anyone please suggest me how to implement it
poojagupta
  • 982
  • 2
  • 12
  • 26
1
vote
3 answers

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, right, up and down. Like a camera on a fixed…
TallGuy
  • 11
  • 1
  • 2
1
vote
1 answer

Stacked templates in Sinatra

Does Sinatra has a built-in way to do stacked Tilt templates, in the way that Sprockets do? So that I could, for example, have document.erb.markdown to have the document first go from Markdown to HTML with ERB injections, and from there on to HTML…
Julik
  • 7,676
  • 2
  • 34
  • 48
1
vote
1 answer

WebGL troubleshooting

I am using ubuntu 12.10 OS. I would like to learn WebGL programming. All at a sudden my WebGL stopped working. Initially firefox provided 3d way of looking at webpage elements. But now it's not working. Saying "Could not initialize Tilt, please…
Kishore
  • 11
  • 4
1
vote
1 answer

How to remove image blinking when using Tilt from Callisto for controls with images?

In my Windows 8 C# app when I have control containing image and I apply the Tilt from Callisto on it, then when this control is clicked for the first time, the image blinks. It's quite disturbing especially when using it with custom "image buttons".…
Martin Suchan
  • 10,600
  • 3
  • 36
  • 66
1
vote
1 answer

Get Rotation (Tilt) Angle In Landscape View - Android Java

I've scrounged the web in search of a good example or someone trying to attempt the same thing, but so far I haven't had much luck. I am trying to get my Devices rotation angle (If you can imagine) starting at 180° (Flat). As the user tilts the…
Loren Kuich
  • 573
  • 3
  • 10
  • 25
1
vote
1 answer

Image tilt correction in java? OMR Reader Application

I need to know how to apply tilt correction to scanned images of OMR Sheets. Before reading the sheets for evaluation, the image needs to be aligned perfectly. How is this done in java? the image files are jpeg files. One idea I've used is…
Coder
  • 29
  • 5
1
vote
2 answers

Rails App won't Push on Heroku - Tilt gem

This is what my Gemfile looks like: source 'https://rubygems.org' ruby '1.9.3' gem 'rails', '3.2.12' # Bundle edge Rails instead: # gem 'rails', :git => 'git://github.com/rails/rails.git' gem 'pg' # Gems used only for assets and not required #…
1
vote
1 answer

TILT control a 3d obj file on libgdx

I am a new to android development and libgdx..., supposedly i loaded a 3d .obj file oval (earth) in libgdx and i wanted to control it using accelerometer downward and sideways.., how could i do that any suggestion,.
zerocool
  • 192
  • 2
  • 10
1
vote
0 answers

Android - How to measure acceleration in the Y-axis but without the acceleration caused by tilting

Basically, I am trying to scroll through a HorizontalScrollView using the native Accelerometer Y-axis measurements. It is working in some senses, need to fine tune quite a few things but the scroll view does move from start to finish with just…
mgibson
  • 6,103
  • 4
  • 34
  • 49
1
vote
1 answer

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 for other messages I need to trap) but it's not…
ChrisF
  • 134,786
  • 31
  • 255
  • 325
1
vote
2 answers

Sinatra render and passing rendering options for Redcarpet

I’m using Sinatra, and Sinatra uses Tilt for template rendering. By default Redcarpet has many rendering extensions. How can I use some of these extensions via Sinatra’s #render method? I need to render markdown files with :gh_codeblock extension.
vorobey
  • 4,401
  • 3
  • 18
  • 20
0
votes
1 answer

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? If I do have to use flash, can you recommend any…
Marek Sebera
  • 39,650
  • 37
  • 158
  • 244
0
votes
0 answers

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 the explorer icons look in Windows 7.. However I…
VulcanCCIT
  • 27
  • 1
  • 7
0
votes
1 answer

When using tilt, how do I stop docker containers but not delete them?

I've begun using tilt for Docker development and love it! I have containers that take a long time to build though. When I'm done using them, I don't want to run tilt down (docs) because rebuilding them can take time. Also, running Ctrl-C doesn't…