Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
5answers
522 views

Generalizing the algorithm for domino tiling?

In this earlier question the OP asked the following problem: Given a rectangular grid where some squares are empty and some are filled, what is the largest number of 2x1 dominoes that can be ...
12
votes
3answers
489 views

Tiled drawable sometimes stretches

I have a ListView whose items have a tiled background. To accomplish this, I use the following drawable xml: <bitmap xmlns:android="http://schemas.android.com/apk/res/android" ...
11
votes
5answers
802 views

String Tiling Algorithm

I'm looking for an efficient algorithm to do string tiling. Basically, you are given a list of strings, say BCD, CDE, ABC, A, and the resulting tiled string should be ABCDE, because BCD aligns with ...
7
votes
2answers
297 views

Algorithm to fit windows on desktop (like tile)

I searching algorithm to solve problem like this: I have few windows, each window can be moved and re sized but with specified ratio between width and height, eg. 2:1 (height:width). Each window ...
6
votes
5answers
811 views

Different background color either side of page

I want to create a fixed-width layout where the background color on either side of the page is different, but with the background colours extending infinitely from either side of the page no matter ...
6
votes
3answers
575 views

Splitting a WPF PathGeometry into “tiles”

I have a rather large PathGeometry (over 100,000 points and stroked but not filled) to display for the user, but only a small portion of the path will be visible at any one time. To clarify, the path ...
4
votes
2answers
207 views

Calculating the optimal number of columns for a table layout - Only given the table width and a list of rectangles

I have a list of rectangles with different dimensions. rects = [100x20, 30x10, 10x10, 70x20, 40x30, 50x10] I am trying to render a table from these rectangles. If I would have a fix number of ...
3
votes
1answer
652 views

Find the center point of a UIScrollView while zooming

I'm having difficulties getting a tiled UIScrollView to zoom in and out correctly with pinch zooming. The issue is that when a pinch-zoom occurs, the resulting view is usually not centered in the same ...
3
votes
6answers
810 views

slicing up a very big jpg map image , 49000* 34300 pixel

hi i want to write a mapviewer, i must to work small tile of big map image file and there is need to tiling the big image, the problem now is to tiling big image to small tiles (250 * 250 pixel or ...
3
votes
2answers
209 views

How do I split this huge image 15104 * 11264

Paint.net dies opening this image, and MS paint as well.I don't know how to open this file for editing.Actually, I set out to break this image (its a map of my area) and load it to my phone (moto rokr ...
2
votes
2answers
1k views

Android: Tiling a Bitmap on a Canvas

I would like to create a 'graph paper' look to the Bitmap I am drawing via a Canvas, and trying to figure out the best way to do this. I can't pass a source Bitmap containing the graph paper ...
2
votes
1answer
1k views

OpenLayers, Layers: Tiled vs. single tile

Each time we add a new layer to our OpenLayers based website (data provided primarily by a GeoServer server), we discuss whether to use a single-tile or a tiled approach. Some of the parameters we ...
1
vote
2answers
72 views

List of great computer scientists [closed]

Could anybody provide me with a link to a list of very influential computer scientists ? I'm trying to make a list of at least 500 persons. I can think of a few by myself (and also consider all Turing ...
1
vote
1answer
253 views

iPhone4 iOS5 custom history UITableViewCell [image included] is it possible?

I'm trying to add a way for my app to display data in an easily comprehensible form. I tried doing this with graphs, but found it to be a bit awkward, so I'm off to find a better solution. Here's a ...
1
vote
1answer
114 views

Tiling matrices in matlab

Here's an interesting question :) I have two "vectors of matrices" which I want to tile like the hankel function does for regular vertices. For example: Column Vector: 10 00 20 00 30 00 Row ...
0
votes
1answer
54 views

Tiling images in android with ImageView in XML

I am trying to get an image on the background to tile until the background is full. My current code is: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
0
votes
0answers
13 views

Allow window overlap in awesome WM floating mode? [migrated]

I am trying to set up a tag in awesome that contains a web browser and tyrs (command line twitter client), where both programs overlap each other following the geometries I have set to them (this tag ...
0
votes
1answer
45 views

Writing Tiling window manager in Python

I have been using Awesome Tiling window manager for over 6 months now, and quite happy with this. I would like to write my own Tiling window manager as a weekend project and for hackfun. I noticed ...
0
votes
1answer
66 views

Tiling images with PHP GD

I'm trying to tile multiple images, i.e. put one directly underneath another. They all have the same width (120px) and differing heights. This is what I have: $finalbg = null; for($i=0; $i<7; ...
0
votes
0answers
102 views

Creating TMS compatible tiles from raster image in java

I am looking for a java based solution to create TMS compatible 256x256 png tiles with a from a big raster file (e.g. jpeg or tiff) with an associated world file that specifies the bounding box, etc. ...
0
votes
0answers
144 views

Tiling an image in a UIVIew

I am trying to tile an image for an app I am making. I am making rope that I can set the length for. In order to do this, I have a function that takes my rope length, sets the frame size ...
0
votes
2answers
74 views

Problem in tiling image starting at different height using TextureBrush in C#

I am trying to tile an image(16x16) over a Rectangle area of dimensions width=1000, height=16 using TextureBrush to get a strip like UI. Rectangle myIconDrawingRectangle = new Rectangle(x, y, ...
0
votes
1answer
114 views

How to enable Loop tiling in gcc?

How to compile a code using gcc, which performs loop tiling (Blocking) ? The -O3 optimization by default does not do loop tiling. I need to enable loop tiling in this flag and also, find out the tile ...
0
votes
0answers
118 views

CSS background tiling; parent and animated child

I'm trying to figure out a succinct way to tile a background image across two elements, a parent and an animated child that leaves (extends out of) the parent container. Trying to go pure CSS, but ...
0
votes
0answers
6 views

Using Orio to generate Tiled code

Has any one tried using orio (http://trac.mcs.anl.gov/projects/performance/wiki/Orio) to generate tiled code ? I looked into the documentation and also some of the test samples provided. But, it is ...
0
votes
0answers
78 views

Wrapping sub rectangle from big texture

I'm trying to build a shader that is able to wrap sub rectangles from a big texture. I basically want to avoid having to create big tiles with the same thing manually wrapped or do so much tiling but ...
0
votes
0answers
37 views

Imagemagick's “scene” command works on computer with Windows and fails Linux?

I noticed a strange behavor of Imagemagick's montage if my script is executed on different OSs. On my Windows machine this script executes and results in a perfectly tiled image. The same script fails ...
0
votes
0answers
91 views

appearance of tiled BitmapDrawable appears to depend on bounds

I have a small 1x10 image that I convert into a bitmap. When I draw this bitmap without tiling, it displays as it should. However, when I attempt to tile it horizontally across the screen, I get ...
0
votes
0answers
30 views

How to specify scene number when reading from a text file

I read single tiles by using the @ command of imagemagick's montage. Unfortunately, it seems that it only expects the name of the image file in the file specified after the @. To get them tiled in a ...
0
votes
0answers
58 views

alpha quad over tiled texture

I have been asked for a question and wonder the answer actually. here's the problem: we have a tiled long mesh and we would like to put a single quad with alpha texture. The question is: a) Describe ...
0
votes
0answers
82 views

Tiling: software for making word clouds

I'm hoping there's a "ready to use" piece of software (like a website) out there that takes a list of words and a rectangle (given as a ratio of side lengths), and returns the "best" tiling of those ...
0
votes
0answers
66 views

Discrepancy between AVD emulator and phone deployment — Tiling mode for bitmaps

I am using: android:tileMode="repeat" To tile a bitmap for a background on an Android application I am writing. It works perfectly in the emulation devices on my computer (2.1 update 1, 2.2, all ...
0
votes
0answers
244 views

OpenGL ES Textures (iPhone) - Put multiple textures on a single plane

I'm using OpenGL ES for iPhone to make a simple 2D game, I'm trying to put multiple textures onto a plane to form a "ground" consisting of squares that are either 'dirt' or 'grass' I'm not having any ...
0
votes
1answer
100 views

IE8 Flash canceling png tiling

I have a weird issue that only seems to show itself on IE 8 so far. I have a semi transparent png tiling accross some divs on my site. All works ok. However as soon as i put any flash content on any ...
0
votes
1answer
131 views

Tiling patterns

I'm looking for efficient solution/algorithm for tiling : the layout of the decking tiles. We want to build system that will calculate the mutual placement of columns and beams (beams, joist) with ...
0
votes
1answer
265 views

Repeating only a portion of a texture in OpenGL ES?

I know it's possible to repeat an entire texture by setting the wrap mode to GL_REPEAT, but is it somehow possible to repeat only a subregion of the texture? For example, when the texture is part of ...
0
votes
1answer
57 views

standard geographic tilizing/binning method?

I'm trying to learn and understand more about mapping and displaying values on a map. (GIS) At the moment I'M looking to take some values and apply those values to a tile or bin on a map. Ideally I'd ...
0
votes
1answer
129 views

In Cocoa (or maybe GUI development in general) how do you specify an arbitrary number of things tiled together?

I'm new to creating GUI's, everything I've done up until this point is using the command line. I'm trying to create a port of minesweeper to the macintosh, as an experiment, and I've got the CLI ...
0
votes
4answers
549 views

very large image manipulation and tiling

I need to a software , Program(Java),or a method for tiling very larg images (more than 140MB). I have used imagemagic and convert tools photoshop and corel draw and matlab (in win os) but I have ...
0
votes
1answer
162 views

Tiling window managers for MS Windows? Any recommendations?

Do any of you use tiling window managers in Windows? There are a ton of them for linux systems but mostly everything I see on the wiki are 1 person projects or old shareware. Does anyone have any ...
0
votes
1answer
291 views

Changing a sprites bitmap

As of right now, I am trying to create a tiling effect for a game I am creating. I am using a tilesheet and I am loading the tiles to the sprite like so... this.graphics.beginBitmapFill(tileImage); ...
0
votes
2answers
323 views

Is graphic object bitMapData type the same as bitmapData type?

The title might be a little misleading. Look at my code and I will explain public static function loadTile(tileDir:String = "empty"):void { if(tileDir != "empty") { ...
0
votes
3answers
1k views

Reviews for programmable, tiling window manager ion3

I find the concept of the programmable, tiling, keyboard-focuessed window manager ion3 very appealing, but I think it takes some time to customize it to your needs until you can really evaluate this ...