Tagged Questions
The material tag has no wiki summary.
3
votes
1answer
36 views
OpenGL glEnable(GL_COLOR_MATERIAL) followed by glDisable(GL_COLOR_MATERIAL)
I was drawing, simultaneously, a vertex colored cube next to a textured cube, with glDrawArrays(), and found that with lighting enabled the textured cube gets "slightly brighter".
After some ...
2
votes
1answer
101 views
Setting separate material properties for different objects in OpenGL
How can I have separate material properties for different objects drawn in OpenGL?
I did the following code, which apparently only shows the later colour:
//************** Object 1 **************
...
2
votes
1answer
80 views
Should I do Material Clasification/ Recognition using histograms or some other higher Math tool, like Bayesian Networks?
I'm learning the basics of OpenCV, and I thought a good project would help me make the studying more fun. After thinking some ideas I came up with some material recognition project. Let's say, I got ...
1
vote
1answer
78 views
glMaterialfv not working for me
This is OpenGL on iPhone 4.
Im drawing scene using light and materials. Here is snippet of my code:
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustumf(-1, 1, -1, 1, -1, 1);
...
1
vote
1answer
133 views
Merge meshes with different materials in unity3d
I have two separate meshes I want to merge with different materials using the combineMeshes function in unity. When I combine the meshes though, the resulting mesh just uses the material of the first ...
1
vote
2answers
96 views
3d color material flat shading algorithm for software renderering
I am currently looking for information on how to get the final flat color value of a given face within a lit 3d scene. I have a Material class that contains the following 4 colors:
ambient, specular, ...
1
vote
2answers
199 views
opengl glMaterialfv vs glMaterialiv
While passing material data to opengl (to be used in a shader):
float white[4] ={1.0f,1.0f,1.0f,1.0f};
glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT, white);
glMaterialfv(GL_FRONT_AND_BACK, ...
1
vote
1answer
258 views
How is OpenGL fragment shading performed?
Apologies if this is a stupid question but it's something I'm having a hard time getting my head around.
I have a 3D object I've created in Maya (and exported to OBJ and MTL files) and I've created a ...
1
vote
4answers
261 views
Which AI books/material would you recommend?
I've always found artificial intelligence interesting, and took a uni course in basic AI; the final project was to write a C++ program which solved Sokoban puzzles. This has motivated me to study AI ...
1
vote
1answer
331 views
Direct3D: Vertex color component vs. IDirect3DDevice9::SetMaterial
What are the differences between the two approaches to coloring my Direct3D model?
1
vote
1answer
691 views
WPF 3d ImageBrush material help
Im trying to apply a material to my GeometryModel3D at runtime like so:
var model3D = ShardModelVisual.Content as GeometryModel3D;
var materialGroup = model3D.Material as ...
0
votes
1answer
74 views
How to texture map a JPG image referenced in an MTL file of an object using OpenGL?
How do I do that? I'm currently using Nate Robin's GLM but I don't think it supports this kind fo texturing? Any help would be much appreciated.
0
votes
1answer
82 views
How to toggle “Show standard map in viewport” via maxscript?
In the slate material editor, I can right click a material and toggle "show Standard Map in Viewport". How can I toggle/set this option of a material programatically from maxscsript?
0
votes
1answer
28 views
Mesh with different materials unity3d
How do I create a mesh in unity via script to use two different materials?
0
votes
0answers
35 views
MFnMesh::getConnectedShaders returns empty MObjectArray
I'm using Autodesk's Maya API on Maya 2011, to write an export plugin.
I tried using the MFnMesh::getConnectedShaders() method to get the list of materials used per face, but whenever I use it on a ...
0
votes
1answer
52 views
Noob seeking help with Database [Access]
I'm fairly new at access and I have no clue how to handle this situation. I dont even know where to start so any help would be greatly appreciated.
So I have to design this data base that has items ...
0
votes
0answers
43 views
How can i hide a wpf material
There i have 3D wpf application, and i use a material in a GeometryModel3D. The material brush is a visual brush, and binding some data. As the requirement of user, they want hide the data some-times. ...
0
votes
1answer
77 views
How to do transfer material from one warehouse to other warehouse in SAP MM Module?
I am making application in SAP MM.How to do transfer material from one warehouse to other warehouse in SAP MM Module?
please share code snippet or useful link,which is appreciated.
Thanks,
Mishal ...
0
votes
2answers
213 views
Opengl fixed light is still moving
I want to set a light in my 3d world, positioned in a corner and when I move with my mouse I want it to stay there and just be.
When I use the function from glut: glutSolidSphere, everything looks ...
0
votes
1answer
300 views
Materials for 3D objects
As I was playing around with the WPF's 3D support, I wanted to try different options for the 3d objects material types, so at first I created a simple scene, with just a triangle (which is rendered ...
0
votes
0answers
130 views
Glscene Ugly Texture with Materiallib
I am using GLScene in my delphi project. I add some freeform on my scene (for example tooth). in the past I don't use material libs. I add my texture via the material property directrly of the ...
0
votes
1answer
349 views
Assigning a material in Blender with a script
Question: How do you assign a material with a script to an object in blender?
Info:
I have this script to import a proprietary model type of mine that is basically a star map with object ...