本文整理匯總了C++中TestApp::set_num_verts方法的典型用法代碼示例。如果您正苦於以下問題:C++ TestApp::set_num_verts方法的具體用法?C++ TestApp::set_num_verts怎麽用?C++ TestApp::set_num_verts使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TestApp
的用法示例。
在下文中一共展示了TestApp::set_num_verts方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。
示例1: main
int main(int argc, char **argv)
{
TestApp app;
srand((unsigned int)time(NULL));
if(argc > 1)
{
app.set_num_verts(atoi(argv[1]));
}
float x = remap_range(0.3f, 0.0f, 1.0f, -10.0f, 10.0f);
cout<<"remap: "<<x<<endl;
//app.init();
//app.run();
Matrix4x4 mat(3.0f, 7.0f, 2.0f, 5.0f,
1.0f, 8.0f, 4.0f, 2.0f,
2.0f, 1.0f, 9.0f, 3.0f,
5.0f, 4.0f, 7.0f, 1.0f);
Matrix4x4 inv = mat;
inv.invert();
Matrix4x4 ident = mat * inv;
return 0;
}