Use this tag for questions about tessellations as well as figuratively the optimization technique of loop tiling.
Questions tagged [tiling]
175 questions
1
vote
1 answer
three.js tiling of textures
I have found this example with diffuse, specular and normal map:
var ambient = 0x111111, diffuse = 0xbbbbbb, specular = 0x060606, shininess = 35;
var shader = THREE.ShaderLib[ "normalmap" ];
var uniforms =…

user2524500
- 75
- 2
- 8
1
vote
1 answer
UIImage scale and tile
Is it possible to show a UIImage in a UIImageView such that the image is both, scaled and tiled?
for example, it should be scaled at 2 times it's actual resolution, but tiled across the full size of the UIImageView.
Is this doable?

matthias_buehlmann
- 4,641
- 6
- 34
- 76
1
vote
1 answer
texture atlas tiling
i'm trying simple texture splatting on ios opengl es 2.0 (ipad). I have 4 tiled textures in pvrt compressed atlas (2x2 tiles). 4 single textures on 4 texture units was terribly slow.
vertex shader:
attribute lowp vec4 position;
attribute lowp…

velkyel
- 352
- 4
- 13
1
vote
1 answer
repeat texture between a png
I want to repeat specific rectangular area at centre of png drawable instead of repeating the whole image using
android:tileMode="repeat" . If I 9 patch it will get stretched .any solution ?

Arun_005
- 11
- 3
1
vote
0 answers
How to modify only a certain part of a 2D array through a function?
I have a function which performs a transpose:
transpose (int ** array, int arr_size){
for (i=0; i

Siddhartha
- 4,296
- 6
- 44
- 65
1
vote
0 answers
creating a web image tiler
I need to show a rather large image that represents something similar to a construction plan and allow users to place pins on it.
I'd like to do this similarly to how google maps works having the image tiled so the user can zoom in and get a better…

Daniel Powell
- 8,143
- 11
- 61
- 108
0
votes
0 answers
How to use circular padding to diffusion model from Keras CV Stable diffusion API?
Referring to https://github.com/divamgupta/stable-diffusion-tensorflow and the author's colab notebook for tiling generation, is the tiling generation is also applicable to the Keras CV API for stable diffusion?
I have been playing around with…

Artico
- 11
- 2
0
votes
0 answers
Raster Layer not applying over mapbox in Android
I am working on an android app.
Mapbox Android SDK V: 10.8.0.
I am trying to apply Raster layer using the following function, but I am unable to get succeed. I am not even getting any error or crash, so It will indicate that I am wrong.
Can you guys…

Faran Iqbal
- 1
- 1
0
votes
0 answers
How to get array of path points or linear interpolation (lerp) on a hyperbolic plane?
The gist of it is, how do you animate between two points on a hyperbolic plane?
So we have basic linear interpolation (lerp) through tweening libraries such as GSAP's TweenMax, where you can specify a start and end position and a duration, and it…

Lance
- 75,200
- 93
- 289
- 503
0
votes
1 answer
Find submatrices of matrix containing nan values such that largest amount of known values is covered by submatrices
Given a matrix of arbitrary dimensions where under a certain antidiagonal all values are unknown, NaN, I want to extract submatrices without NaN values which are as large as possible such that as many elements of the original matrix are contained in…

Stijn Castelyns
- 1
- 1
0
votes
1 answer
Tile size for asymmetric matrix
When I transpose an matrix of 64x64, I use a tile size of 256/64=4 and with a 32x32 I use an tile size of 256/32=8. How do I calculate the tile size of an asymmetric matrix? A tile size of 16 gives me the lowest misses but i can't explain it. Can…

fleurderose
- 25
- 5
0
votes
1 answer
Finding the mean point in tiling space?
I have a collection of points in tiling 2D space (I believe its called toroidal geometry/space), and I want to find their mean:
The basic approach would be to just take their mean 'locally' where you would just treat the space as non-tiling.…

Antigrammer
- 27
- 4
0
votes
1 answer
Why starting an application with a key binder, it does not tile?
I have a problem with tiling applications in awesome-wm.
I set up some key biners in the rc.lua:
awful.key({ modkey, "Control" }, "f", function () awful.util.spawn("firefox") end,
{description = "firefox", group =…

Fabio Campanile
- 111
- 2
0
votes
1 answer
Problem of tiling with GeoWebCache: most tiles are missing
I set up a PostGIS database that I added in GeoServer via a parameterized SQL view. I used Leaflet to display this layer via wms.
It worked fine until I add GeoWebCache using the url "/geoserver/gwc/service/wms" instead of "/geoserver/wms". I can…

bhagavadgitadu22
- 43
- 7
0
votes
0 answers
How do I apply loop tiling?
I am trying to apply code tiling but I dont really understand it, I had seen things about inner loop but I dont have any inner loops. Can anyone explain it to me? I am using the gcc compiler.
#pragma omp parallel for reduction (+:outputBins)
…

ControlMet
- 26
- 4