本文整理汇总了C++中Exporter::beginPersp方法的典型用法代码示例。如果您正苦于以下问题:C++ Exporter::beginPersp方法的具体用法?C++ Exporter::beginPersp怎么用?C++ Exporter::beginPersp使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Exporter
的用法示例。
在下文中一共展示了Exporter::beginPersp方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: draw
void cApp::draw(){
float transx = getWindowWidth()/2 - mFpb/2/2;
float transy = getWindowHeight()/2;
mExp.beginPersp();
{
gl::clear( Colorf(0,0,0) );
glPushMatrix();
{
glTranslatef( transx, transy, 0 );
for( int w=0; w<mWaves.size(); w++ ){
for( int i=0; i<mWaves[w].posL.size(); i++ ){
float noise = mPln.noise( mWaves[w].posR[i].y*mWaves[w].posL[i].y*0.5, i*0.5 );
if( noise<0.67 ){
glPointSize( 1 );
}else if( noise<0.72 ){
glPointSize( 2 );
}else if( noise<0.8 ){
glPointSize( 3 );
}else{
glPointSize( 1 );
gl::drawStrokedCircle( Vec2f(mWaves[w].posL[i].x, mWaves[w].posL[i].y), MAX(1, (noise-0.8f)*200.0f) );
}
if(randFloat()<0.97f) glColor3f( mWaves[w].colorL[ i ].r, mWaves[w].colorL[ i ].g, mWaves[w].colorL[ i ].b );
else glColor3f(1, 0, 0);
glBegin( GL_POINTS );
glVertex2f( mWaves[w].posL[i].x, mWaves[w].posL[i].y );
glEnd();
if(randFloat()<0.97f) glColor3f( mWaves[w].colorR[i].r, mWaves[w].colorR[i].g, mWaves[w].colorR[i].b );
else glColor3f(1, 0, 0);
glBegin( GL_POINTS );
glVertex2f( mWaves[w].posR[i].x, mWaves[w].posR[i].y );
glEnd();
}
}
}
glPopMatrix();
}
mExp.end();
gl::clear( Colorf(1,1,1) );
gl::color( Colorf(1,1,1) );
mExp.draw();
}