Questions tagged [tiling]

Use this tag for questions about tessellations as well as figuratively the optimization technique of loop tiling.

175 questions
1
vote
1 answer

How to make adjacent tiles combine seamlessly ?(2D)

Ok ill get straight to the point, here is an image of what i want to achieve: And here is an Image of what my game looks like: What I'm referring to is how the tiles seamlessly "connect". As you can see, on the first image there is a slight fade…
user3738071
  • 199
  • 5
  • 15
1
vote
1 answer

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 vector: 30 40 50 60 00 00 00 00 The resulting matrix…
Ofer
  • 2,883
  • 2
  • 17
  • 16
1
vote
2 answers

Create a Composite BitmapImage in WPF

I have three BitmapImages that I would like to stitch together to create a composite image. The three images to be stitched together are aligned in the following way: The images are of a type System.Windows.Media.Imaging.BitmapImage. I have looked…
siavashk
  • 436
  • 7
  • 24
1
vote
3 answers

How to store symmetries of a Polyomino using pointers-to-pointers?

Okay so I'm working on coding a discrete tiling problem. I am storing my object called a polyomino like so: pointer = new int*[h]; p_0 = new int*[h]; p_1 = new int*[h]; p_2 = new int*[w]; p_3 = new int*[w]; p_4 = new int*[w]; p_5 = new…
mikeysaxton
  • 37
  • 1
  • 1
  • 3
1
vote
1 answer

How to embed an application into another application dynamically?

I want to build a general purpose application that will be used like a IDE for anything. How can I embed an application into another application, in the runtime, like so:
ceremcem
  • 3,900
  • 4
  • 28
  • 66
1
vote
1 answer

what is the MapBox solution to add a vector-tile layer into Leaflet map?

Background: Leaflet map a vector tile layer MapBox Studio to generate vector tiles (protocol buffer format) MapBox.com for tile hosting using Leaflet.MapboxVectorTile plugin to parse and render MapBox vector tiles Issues: Cannot get original…
Simon
  • 1,463
  • 6
  • 34
  • 46
1
vote
1 answer

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…
monkut
  • 42,176
  • 24
  • 124
  • 155
1
vote
1 answer

Number of ways to tile a 2xN grid with forbidden positions with 2x1 and 1x2 dominoes?

I was keen to know the algorithm to solve this problem. The formal description of the problem statement is something like this-Given N(<100) and dominoes 2x1 and 1x2 I have to find the number of different grid tilings possible. The difference here…
Aditya Bahuguna
  • 647
  • 7
  • 22
1
vote
1 answer

FBLoginView Button Tiling

I have implemented FBLoginView on my previous version of my iOS app, suited for iOS 6&7. Recently, after the iOS 8 release, I upgraded my Facebook Framework to the latest version and below is the result of implementing the same FBLoginView button. I…
Mehdi Badjian
  • 71
  • 1
  • 11
1
vote
0 answers

iOS how would I implement a scroll view based overlay that can display arbitrary views at x,y coordinates

I'm working with a 3rd party maps vendor and would like to create an overlay for this map to display arbitrary content. I already have callout pins created, but am looking to expand that with truly any kind of content I want to put over the…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407
1
vote
4 answers

very large image manipulation and tiling

I need a software or program in Java or a method for tiling very large images (bigger than 140MB). I have used ImageMagick and convert tools Photoshop and Corel Draw and Matlab (in Windows), but I have a problem with memory overload. ImageMagick is…
Mohammad
  • 11
  • 1
  • 2
1
vote
1 answer

convert image to maptiles using gdal2tiles

I need to split an image into tiles that fit for map in different zoom levels. I tried with Gal2tiles but I was not able to get tiles. I am using PNG image for splitting to tiles.
1
vote
1 answer

How to use UV coord based on modulo with a shader?

I don't understand how to write the tiling code to repeat an image on a mesh : the material contains the texture, so is it TEXCOORD0 that should be used instead of the "vertex" information? EDIT: Previous code : vertex : varying vec2…
Paul
  • 6,108
  • 14
  • 72
  • 128
1
vote
1 answer

Fast drawing tilings GTK and Cairo

I am new at drawing with Cairo and GTK, and the program I'm working on needs to draw a circle tiling of 500x500 or 1000x1000. Also, there are some work to do before drawing but right now I am focused on the drawing part which will involve mouse…
Larckov
  • 45
  • 8
1
vote
1 answer

Submatrix extraction from matrix with loop tiling

I have the following matrix 4x4: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 and I want extract and store (in some news variables) the four following submatrix 2x2: [1 2 5 6] [3 4 7 8] [9 10 13 14] [11 12 15 16] It's like the "Rect"…