Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
979 views

C++ - tangent, binormal and other shader-related things

Many of the mapping technics including normal bump mapping, parallax mapping and others require the special per-vertex tangent-space basis (tangent, normal, binormal / bitangent). This obviously ...
4
votes
2answers
223 views

Per-Vertex Normals from perlin noise?

I'm generating terrain in Opengl geometry shader and am having trouble calculating normals for lighting. I'm generating the terrain dynamically each frame with a perlin noise function implemented in ...
4
votes
2answers
564 views

Normal of an equilateral triangle that has been arbitrarily transformed in 3D space

I have an issue that I can't quite seem to find a starting point on; I'm not even sure I can describe it well enough to get an answer. I need to find the normal of an equilateral triangle in 3D ...
3
votes
3answers
91 views

How to find the two opposite normals or two segments?

I have a two segments AB and CD (in red). These two segments are facing each others. They are not completely parallel but will never be perpendicular to each others either. From that, I need to find ...
3
votes
2answers
368 views

Odd effect with GLSL normals

As a somewhat similar to a problem I had before and posted before, I'm trying to get normals to display correctly in my GLSL app. For the purposes of my explanation, I'm using the ninjaHead.obj model ...
3
votes
2answers
583 views

Little problem while calculating vertex normals (OpenGL ES)

I'm having a little problem with the vertex normal. The result seems a little strange. First a look at the images: Original model in 3D software. Per-Fragment lighting, with mesh imported ...
3
votes
2answers
510 views

Calculate if two 3D triangles are on the same plane

For a 3D game engine I'm working on I need to calculate if two 3D triangles are on the same plane to display it accordingly. How do I calculate the angles of a triangle in 3D space? Would ...
3
votes
2answers
1k views

Could somebody explain how to use glDrawElements (iPhone)?

Sorry for the duplicaiton, but I've been googlin' for hours now without any result. I have this (optimized) data of a simple cube exported from a converter: // 8 Verticies // 4 Texture Coordinates ...
2
votes
1answer
99 views

Using GLSL shaders + lighting / normals

I've got this not-so-small-anymore tile-based game, which is my first real OpenGL project. I want to render every tile as a 3D object. So at first I created some objects, like a cube and a sphere, ...
2
votes
1answer
149 views

Calculating vertex normals OpenGL

I'm trying to calculate the vertex normals for a wave, but I'm getting a chequered effect instead of the desired smooth shading. I'm not sure if I'm passing the correct vector into the calcNormal() ...
2
votes
1answer
160 views

Flipped computed face normals after iOS OpenGl ES .obj loading a unit cube

I'm trying to export and load a model from Maya into a very simple iOS OpenGL ES setup. For that I wrote a ruby obj parser that basically takes the vertices and normals and computes them into a C ...
2
votes
1answer
189 views

Method for finding normals to a voxel surface

I was working on a method to approximate the normal to a surface of a 3d voxel image. The method suggested in this article (only algorithm I found via Google) seems to work. The suggested method ...
2
votes
2answers
259 views

How to generate normals for VBO?

I've implemented a wavefront (OBJ) file loader for my OpenGL app which provides me face, texture and vertex information. However, to use lighting I obviously need normal information. I know the ...
2
votes
1answer
167 views

glDrawElements with constant normal

I was just curious if you can specify constant normal when drawing with single call of DrawElements. I'm using VAOs and VBOs so it's not that problem because I load them once for all vertices and just ...
2
votes
1answer
745 views

Calculating and Applying normals to a tirangle mesh

I have a triangle mesh and I'm trying to calculate the normals so I can apply them when drawing the mesh. I'm using immediate mode (will probably change to vertex arrays when I get time to understand ...
2
votes
2answers
154 views

How many normals?

if you are calculating the normals of a polygon for rendering it on WebGL, do you use a normal for every index in the index array or for every vertex on the vertex array?
1
vote
1answer
52 views

How to convert normals to degrees?

I am working on a game and I am writing an Entity base class. Since many of the entities will behave like particles(2D) I want to use a normal instead of a rotation in degrees. However since I am ...
1
vote
3answers
78 views

How would I use GLSL to generate a texture with all of the eye-space normals of every fragment in the frame, in RGB data (a la normal mapping)?

I need to somehow render a texture, like a screenshot of the scene, except instead of the colour data of the point behind each fragment, the normal is stored. It would generate a texture that looks ...
1
vote
1answer
78 views

Unusual Lighting Effects - Random Polygons Coloured

I am working on creating an object loader for use with iOS, I have managed to load the vertices, normals and face data from and OBJ file, and then place this data into arrays for reconstructing the ...
1
vote
1answer
101 views

Half normals are wrong

I'm using a program called sculptris to create models in Wavefront OBJ format. I just created my first couple models and am now trying to import them into an OpenGL scene. I've never written an object ...
1
vote
2answers
282 views

Calculating normals in a triangle mesh

First off I would like to say you guys have been a great help to me the past few weeks in answering my questions. I have drawn a triangle mesh with 10000 vertices(100x100) and it will be a grass ...
1
vote
1answer
125 views

How to draw the normals at many points in a surface?

X,Y and Z are the matrices contain the coordinates of points in the surface. Xnormal,Ynormal and Znormal are the matrices contain the normals at these points. How can I draw all these normals at their ...
1
vote
1answer
477 views

GLSL normals with non-standard projection matrix

Afternoon everyone! After a few days of getting my GLSL vertex shader to display the vertices correctly, I've now moved onto lighting! My understanding of openGL lighting/normals isn't great by any ...
1
vote
2answers
2k views

Why isn't this Android specular lighting example working as intended?

Why aren't specular highlights showing up in the binary produced by the following code? package com.example.helloandroid; import java.nio.ByteBuffer; import java.nio.ByteOrder; import ...
0
votes
1answer
21 views

Adding normals to a list of vertices

I am using DirectX 9 in C# I store all my vertices in a list (not an array) because I use a dynamic LOD algorithm, so everything is calculated per frame, so my vertices could potentially be different ...
0
votes
0answers
13 views

Notify Out of Stock Product for normal user(Without Login) in magento

Currently in magento, only registered customers can able to get notification when product is out of stock, but for normal user( not registered users) there is no options for getting notification when ...
0
votes
1answer
44 views

How do I unpack DEC3N & UDEC3 format?

I have a small tool that I use to convert some mesh files. The mesh files have the normal's stored in either DEC3N or UDEC3 format. How do I unpack that to three regular floats cpu side?
0
votes
3answers
49 views

OpenGL Calculating Normals (Quads)

My issue is regarding OpenGL, and Normals, I understand the math behind them, and I am having some success. The function I've attached below accepts an interleaved Vertex Array, and calculates the ...
0
votes
3answers
145 views

Problems with OpenGL lighting

I'm having trouble being able to see objects I've created when I have enabled lighting in OpenGL. I have an object that is imported from 3D Max that the lighting works correctly on but the rest of my ...
0
votes
2answers
35 views

Normalvector for Quad

I've drwan a simple quad with glBegin and glEnd. With a for-loop I create copies of the quad and rotate it around my y-Axis in 3D-Space. Now th problem is that I only see the quads in the front. These ...
0
votes
0answers
16 views

Normal of a Surface Triangle

How to compute the normal vectors (which face “upwards”, i.e. y > 0) for a given triangle. The Coordinates of the triangle are given as (x1,y1,z1) , (x2,y2,z2) and (x3,y3,z3)
0
votes
1answer
79 views

C# wpf 3D facing from origo

If I have three points and always want the visible face should be the side that is "facing" from origo, is there a shortcut to calculate the normal of the plane ? Like this ...
0
votes
1answer
81 views

Trying to fix 3D mesh normals

I have triangle collection that define mesh surface of my 3D shape, I would like to fix normal of each triangle to point outshape. I was trying the following (pseudo): 1. define that first triangle ...
0
votes
0answers
107 views

MeshLab: Render obj file with my own computed normals

I am trying to write a obj file with vertices. I am computing the vertex normals in my code and writing to this file as well. When I try to render this file in Meshlab it reads the vertices ...
0
votes
0answers
37 views

Apply Shaders from Face Normals in MeshLab?

I have a 3D dataset, with all x,y,z vertices, the faces and face normals. I was using MeshLab to apply the shaders, but it seems that all the shaders in MeshLab works on vertex normals. Can I shade ...
0
votes
1answer
53 views

Direction of normals

Currently, I have a program that will revolve a simple 2d polygon around the x-axis to create a 3D shape. The problem is that in order to make sure that the normals for the surfaces are aligned ...
0
votes
3answers
137 views

averaging pixel locations to find a surface normal. (2D)

I Am working on a 2D game in XNA that needs some physics. I have found that physics engines such as Farseer will not cut it due to some of the ways they work. (thats a long story involving rewriting ...
0
votes
1answer
150 views

Matrix Translations with OpenGL Normals

I'm working with geometry in OpenGL and I'm now working with lighting. I'm noticing that if I translate my geometry, the normals don't follow and are thus useless. How do you apply a tranformation ...
0
votes
1answer
214 views

DX10 Terrain Normals

I'm generating terrain using perlin noise and then computing normals using: D3DXVECTOR3 v0 = aoVertices[auiIndices[i]].Position; D3DXVECTOR3 v1 = aoVertices[auiIndices[i + 1]].Position; ...
0
votes
1answer
238 views

Cylinder Normals

I'm developing an OpenGL application which right now only draws a big tube consisting of several small cylinders (kind of like a slinky). I'm getting an annoying effect when I turn the lighting and ...
0
votes
1answer
772 views

glDrawElements with indices applied to vertices and normals

Is it possible to use the glDrawElements method when you have lets say 2 arrays (one for Normals and one for Vertices) and use the Index-buffer interleaved between vertices and normals). EXAMPLE: ...
0
votes
1answer
223 views

Getting normal information from OpenGL render output

I'll try to keep this simple. I want a way to access the normal information of the scene, from the Frame Buffer output (or similar). The same way one is able to access the Depth Buffer using ...
0
votes
2answers
967 views

Calculation of vertex normals in DirectX

As a learning experience, I'm writing an Immediate mode managed DirectX 9 application. I'm manually calculating Vertex normals across all triangles in a scene to allow smooth Gouraud shading. ...