The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
48 views

Best CLOD Method for Planet Rendering

I'm currently working on my thesis, it is an engine to render terrains of planetary size. I'm still finishing my researh and I have encountered a lot of stuff about this subject, the problem is that ...
0
votes
1answer
19 views

DX11 Tessellation LOD with diameter incorrect when Object gets rotated by D3DXMatrixRotationYawPitchRoll

I implemented the LoD with diameter from following withpaper NVidia TerrainTessellation WhitePaper. In Chapter "Hull Shader:Tessellation LOD" Page 7 there is a very good explenantion of the LoD with ...
0
votes
0answers
15 views

hierarchical level of details

I need to generate hierarchical LODS for scene graph on each level(for group of objects). For example, if graph contains wall from individual brick objects, I need to generate simple bounding box for ...
0
votes
0answers
75 views

Level of Detail and scene.js 2.0.0

I saw a description of how to use scene.js and set up several levels of detail (and there was a youtube video on this), but this demo was for version 0.7. Is there any documentation on how to use LOD ...
1
vote
0answers
569 views

OpenGL ES 2.0 texture2D bias/lod

I am using the OpenGL ES 2.0 GLSL functionality to manipulate images. What I want to achieve is to select a specific Level Of Detail (LOD) when fetching a sample from a texture from within a fragment ...
0
votes
0answers
39 views

calculate whether KmlRegion is active using the google earth js api

I'm using the Google earth js plugin. I have a KmlNetworkLink that has a KmlRegion with a LOD specified. How can I figure out whether the region is within the bounds and that the LOD was reached? ...
1
vote
1answer
244 views

Ogre material lod: How do i set it up?

I have an Ogre material and, since i'm not happy with the GPU filtering, i want to make a manual mipmapping, i.e, i create all the textures, and then i set up a lod-based strategy to load the correct ...
1
vote
1answer
62 views

Storage of 2d data at irregular rates

This is for a Terrain Generation and rendering program. I have a loop that looks like this: x = -MAX_SIGHT_DISTANCE; y = -MAX_SIGHT_WIDTH; while (x < MAX_SIGHT_DISTANCE) { while (y < ...
0
votes
0answers
294 views

How to implement the polygon reduction algorithm?

For a couple of days I've been trying to read some stuff regarding the following algorithm but I found it quite difficult to understand. I've managed to find a few code samples, the most famous of ...
0
votes
1answer
569 views

implementing Level of Detail algorithm for OpenGL

I'm trying to implement the following algorithm (breaking to painting to small triangles) but I couldn't find any tutorial over the net that explains it properly, Most of the things I've found explain ...
5
votes
3answers
495 views

Pseudo random number generator from two inputs

I need a pseudo random number generator that gives me a number from the range [-1, 1] (range is optional) from two inputs of the type float. I'll also try to explain why I need it: I'm using the ...
1
vote
0answers
95 views

How to give a mesh, vertex like self lighitng?

How we can give any complex mesh, vertex like self lighting. I tried increasing light ambient, material ambient, but as soon as it goes far it starts disappearing. I want that to be visible at ...
1
vote
1answer
367 views

Subsampling SQL-stored data for plots

Suppose you have a program that logs (timestamp, stock_price) to an SQL database every 30 seconds, and you want to generate plots of the stock price over various timescales. If you plot measurements ...
5
votes
2answers
949 views

2D Level of Detail (LOD) algorithm

I have been scouting around the net for an algorithm that enables you to create level of detail (LOD) representations of 2D polygons, but am unable to find ANY decent reference. Maybe I am using the ...
7
votes
5answers
2k views

Reduce number of points in line

I'm searching for algorithms to reduce the LOD of polylines, lines (looped or not) of nodes. In simple words, I want to take hi-resolution coastline data and be able to reduce its LOD hundred- or ...
7
votes
8answers
1k views

Distant 3D object rendering [games]

What is the basic premise behind technology such as is found in Oblivion (and other games, I'm sure; haven't played enough to know), wherein objects from afar are vaguely shown when you view them from ...