tiling

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 totally different UI-concept. Therefore, I would like to read reviews of people who tried it for a longer time as environment for programmi...

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 CDE yielding BCDE, which is then aligned with ABC yielding the final ABCDE. Currently, I'm using a slightly naïve algorithm, that works as f...

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") { tPoint = new Point(0,0); tRect = new Rectangle(0,0,30,30); //load in tile sheet image ...

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); this.graphics.drawRect(30, 0,tWidth ,tHeight ); var tileImage is the bitMapData. 30 is the Number of pixels to move retangle. then tWidth ...

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 experience with these managers or others? ...

How do I split this huge image 15104 * 11264

Hello, 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 e6),which does not have a GPS at the moment. TileMage is giving up the splitting as well, throwing out of memory exception !. I ...

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 problem with memory amount.and memory is not enough.imagemagic is very slow and result is not desirable. I dont know how can i only load a smal...

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 like this size) so on, i used ImageMagic program to do it but there was problem now is any other programing method or application that do til...

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 working, but I'm running into walls everywhere with the gui. The first thing it seems I have to do, however, is be able to tile n x m 'boxes' f...

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 evaluate are the following: Using the tiled approach we get: Slow but continuous buildup of the viewport Lots of small images Client sid...

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 like the tile sizes to be uniform, like 100 meters, 500 meters, etc. Is there a standard method for creating uniform tile sizes? Or Are ...

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 an atlas. I'm targetting OpenGL ES 1.x, so shaders are out. ...

Tiling matrices in matlab

Hi, 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 vector: 30 40 50 60 00 00 00 00 The resulting matrix needs to be: 10 20 30 40 00 00 00 00 20 30 40 50 00 00 00 00 30 40 50 60 00 00 ...

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 region. Details: The app starts with a tiled image that is 500x500. If a user zooms in, it will snap to 1000x1000 and the tiles will redr...

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 itself is not predetermined but will be created from data. The problem: I want to provide very smooth panning so the user can explore are...

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 support of irregular shape. Thank you in advance for any help. ...