#include <jtriangle.hpp>
Public Methods | |
normalVertex () | |
normalVertex (const normalVertex &obj) | |
void | draw () |
void | tform () |
Public Attributes | |
vect3f | pos |
vect3f | normal |
vect3f | color |
|
Definition at line 78 of file jtriangle.hpp. 00079 { 00080 color(1,1,1); 00081 } |
|
Definition at line 83 of file jtriangle.hpp. |
|
Definition at line 92 of file jtriangle.hpp. Referenced by triangle::draw(), triangle::drawmesh(), and triangle::drawnormals().
00093 { 00094 glColor3fv(color.v); 00095 glNormal3fv(normal.v); 00096 glVertex3fv(pos.v); 00097 } |
|
Definition at line 99 of file jtriangle.hpp. Referenced by triangle::draw(), triangle::drawmesh(), triangle::drawnormals(), and triangle::tform().
|
|
Definition at line 76 of file jtriangle.hpp. Referenced by normalVertex().
|
|
Definition at line 75 of file jtriangle.hpp. Referenced by triangle::drawnormals(), normalVertex(), and triangle::syncnormals().
|
|
Definition at line 74 of file jtriangle.hpp. Referenced by triangle::drawnormals(), normalVertex(), and triangle::normalize().
|