我正在使用freeglut和glew开展一个项目,虽然我认为这与我的问题无关。这些第一行输出我期望的值。 (-1,-1)。注意:mikesVertices [0] .x和mikesVertices [0] .y属于GLfloat类型。
std::cout << "(" << mikesVertices[0].x << ", " << mikesVertices[0].y << ")" << endl;
然而,这两行(紧接着......)。
GLfloat x = mikesVertices[0].x;
std::cout << "x: " << x << endl;
为x输出不正确的值。 (1.92749e-039)
我尝试这样做的原因是因为我想将值传递给函数,但函数也得到了错误的值。任何帮助将不胜感激。
编辑:mikesVertices是一个指向vec2对象的指针(由Angel编写,我已经展示了部分,我认为这似乎是必要的)struct vec2 {
GLfloat x;
GLfloat y;
//
// --- Constructors and Destructors ---
//
vec2( GLfloat s = GLfloat(0.0) ) :
x(s), y(s) {}
vec2( GLfloat x, GLfloat y ) :
x(x), y(y) {}
vec2( const vec2& v )
{ x = v.x; y = v.y; }
//
// --- Insertion and Extraction Operators ---
//
friend std::ostream& operator << ( std::ostream& os, const vec2& v ) {
return os << "( " << v.x << ", " << v.y << " )";
}
friend std::istream& operator >> ( std::istream& is, vec2& v )
{ return is >> v.x >> v.y ; }
//
// --- Conversion Operators ---
//
operator const GLfloat* () const
{ return static_cast<const GLfloat*>( &x ); }
operator GLfloat* ()
{ return static_cast<GLfloat*>( &x ); }