This tag refers to questions about increasing the complexity of a data-set through subdivision.
2
votes
0answers
32 views
Suggestions for alternative 3D space partition tessellation, different from Voronoi and Delaunay
I have a system of mono-disperse spheres inside a cubic box. I am studying the volume distribution inside the sample, after tessellating it with either Voronoi and Delaunay tessellations. I am ...
0
votes
0answers
39 views
Finding correct input for tessellated terrain using 16 control point Bezier patches
Ok, so I'm trying to clue up on DirectX 11 based tessellation and how it can increase the level of detail of relatively low polygon models. I am reaching a point that I am consistently getting stuck ...
2
votes
1answer
147 views
Rectangle tessellation in 2D Polygon Sides without overlapping
I am implementing a map-like interface for a personal project, in Javascript with HTML5 canvas, and I am mostly looking for ideas on how I could properly tessellate all 2D polygon sides with ...
2
votes
1answer
145 views
subplot within a region of a plot in r
> d
[,1] [,2]
1 -0.5561835 1.49947588
2 -2.3985544 3.07130217
3 -3.8833659 -4.29331711
4 3.1025836 5.45359160
5 0.7438354 -2.80116065
6 7.0787294 -2.78121213
7 ...
0
votes
1answer
150 views
Voronoi diagrams based on non metric distances in R
I want to voronoi diagrams in R. I have a set of points in N-dimensions(say 10). I dont want to use multi dimensional scaling(MDS). I want voronoi diagrams to be plotted using non metric measures. Is ...
0
votes
0answers
225 views
Index delaunay triangulation OpenCV
Using Delaunay triangulation I want to get the index of the coordinates closest to each other. For example; from a set of 1000 coordinated it would say point 301 creates triangles with points 102, 310 ...
2
votes
0answers
131 views
how to map wgs84 coordinates to sql server b-tree index (w/o using built in spatial indexes)
I would like to be able to map geographic points from WGS84, I believe, formatted for ms sql server, to the set of cells it would touch if the same coordinate pair were to be tessallated into an sql ...
3
votes
0answers
117 views
OpenGL Tessellation Callback Not Executing
I used the examples here to move my tessellation callbacks to a different class.
The code compiles, but the callback code never executes.
Callback Class:
template <class Class, typename ...
0
votes
3answers
269 views
OpenGL Applying Texture to Tessellation
I'm trying to take a concave polygon and apply an image to it as a texture. The polygon can have multiple contours, both internal holes and external "islands". It can be any shape, but will be ...
-1
votes
2answers
295 views
Passing Parameters in HLSL with Tessellation
My question is hopefully very simple but I can't seem to get the flow of data correct. The issue is how to pass texture coordinates and normal data from a vertex shader through the tessellation stages ...
0
votes
2answers
263 views
HLSL Modify Tessellation shader to make equilateral triangles?
Details:
I'm in the proccess of procedural planet generation; so far I have done the dynamic LOD work, but my current software algorithm is very very slow. I decided to do it using DX11's new ...
0
votes
1answer
112 views
Z-fighting after tessellation
I'm doing opengl tessellation and this is the drawing I get.
If I cull the back face, those darker spots tend to disappear. This looks like Z-fighting, but I don't know where this issue should be ...
2
votes
0answers
159 views
openGL Tessellation problems
I'm trying to tesselate the teapot, the tesselation works fine inside these triangles that appear, but the model is not working.
The tesselation shaders and vertex shaders are the same used on this ...
-1
votes
2answers
246 views
How heavy is hardware tessellation?
If tessellation gives a bonus over just using high-poly models,then why do modern 2012 games still use gigantic models that take a lot of hard disk space instead of tessellating it all and just ...
0
votes
1answer
145 views
Tessellation shader culling unseen vertices?
I've noticed that in my program when I look away from my tessellated mesh, the frame time goes way down, suggesting that no tessellation is happening on meshes that aren't on screen. (I have no custom ...
3
votes
1answer
304 views
WebGL and Tessellation library?
In C/C++, OpenGL has a nice library for tessellating complex polygonal shapes into triangle strips and fans. That library is "GLUtesselator".
Is there any library with the equivalent functionality ...
4
votes
2answers
397 views
algorithm for optimal subdivision (i.e. tessellation / partitioning) of 2d polygons into smaller polygons?
I've got some 2D polygons, each as a list of clockwise coordinates. The polygons are
simple (i.e. they may be concave but they don't intersect themselves) and they don't overlap eachother.
I need to ...
1
vote
0answers
206 views
How can I make transitions honor UseLayoutRounding?
I have a page in my C#/XAML Metro app that animates in using EntranceThemeTransition. Inside this page, I have some tiled graphics: Images that fit snugly against each other to build up a larger ...
1
vote
0answers
60 views
How to render filled B-Spline in a SM5.0 way?
If I want to feed GPU some isoline patches, and let it give me some triangle primitives in the end. Are there some practical ways, or where should I look for them?
It seems Direct2D uses D3D9 ...
1
vote
2answers
122 views
Which is faster: creating a detailed mesh before execution or tessellating?
For simplicity of the problem let's consider spheres. Let's say I have a sphere, and before execution I know the radius, the position and the triangle count. Let's also say the triangle count is ...
4
votes
0answers
201 views
Best-fit hexagonal tilings of irregular areas
I'm looking for recommendations for an application or library to calculate good fits of regular hexagonal grids to an irregular area or group of areas.
Ideally, I'd like to be able to supply an image ...
1
vote
2answers
2k views
OpenGL tessellation of a car made from a polygon
im learning to use openGL and iv been told that because my wheel arches are concave i have to tessellate them. So here is my code for the front wheel arch...
GLdouble car[7][2] = { {-1.93,0.3}, ...
1
vote
2answers
509 views
OpenGL project, using tessellation on a polygon rendered car
Ok so im seperating my problem up because i need a depthy answer cos im nooby with it and will fail if i have just a generalisation answer.
I have a car body which i originally drew using line_loop ...
1
vote
0answers
84 views
Surface triangulation from constant depth planar contours
I am trying to develop an application that converts a parallel set of input contours(polygons) with constant Z values to a tessellated surface mesh .The contours may also consist of holes
All ...
0
votes
1answer
665 views
GLSL interpolate color tessellation shader
my tessellation shader generates a bezier curve for two vertices.
the vertices consists of two coordinates x and y (vec2).
now every vertex has a color.
my question: how to interpolate the color per ...
0
votes
0answers
279 views
GLSL tessellation control shader unknown qualifiers
when i load my tessellation control shader it ouputs:
0(7) : error C3008: unknown layout specifier 'vertices'
0(15) : error C7565: assignment to varying in gl_TessLevelOuterIn
0(16) : error C7565: ...
6
votes
2answers
486 views
Hyperbolic tessellation Java library
I was wondering if anyone knows a good library for tessellating a hyperbolic plane with polygons (my main interest lies in {8,3} tessellation). I found some applets here and there but the separation ...
5
votes
5answers
7k views
OpenGL ES - How to Draw a filled Polygon?
I tried googling and searching on stack but I didn't find anything :-(
( http://stackoverflow.com/questions/2842339/mapping-irregular-shapes-or-other-polygons-cartoons-sprites-to-triangles-in-op )
I ...
3
votes
1answer
543 views
NURBS on DirectX 11?
Can you render NURBS on the GPU with DirectX 11? I've been reading up on current trends to rendering surfaces like these, but I don't see anything on NURBS.
I found some related references, but ...
3
votes
3answers
570 views
C++ - 3d geometry question
Right my own 3d engine (which I'm currently developing) has a very limited abilities in terms of geometry rendering and I want to expand it.
What I'm interested in is how-it-should be done in terms ...
0
votes
1answer
291 views
Tessellation transition
I want to implement tessellation transition from fine to coarse geometry and vice versa for terrain rendering which doesn't introduce discontinuities (cracks).
Real-time performance is not required ...
0
votes
1answer
909 views
Looking for code samples for Direct3D tessellation
I am trying to learn how to use the Direct3D function D3DXTessellateRectPatch:
msdn.microsoft.com/en-us/library/bb205471(v=VS.85).aspx
I have found the MSDN documentation quite useful and have been ...
16
votes
4answers
4k views
Math for a geodesic sphere
I'm trying to create a very specific geodesic tessellation, but I can't find anything online about it.
It is normal to subdivide the triangles of an icosahedron into triangle patches and project them ...
