本文整理汇总了C++中Patch::draw_tri_strips方法的典型用法代码示例。如果您正苦于以下问题:C++ Patch::draw_tri_strips方法的具体用法?C++ Patch::draw_tri_strips怎么用?C++ Patch::draw_tri_strips使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Patch
的用法示例。
在下文中一共展示了Patch::draw_tri_strips方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: out
void
write_normals(const BMESH &mesh, ostream &os)
{
Formatter out(&os, 77);
out.write(" normal [");
IVNormalIterator iter(&out);
for (int p = 0; p < mesh.patches().num(); p++) {
Patch *patch = mesh.patches()[p];
patch->draw_tri_strips(&iter);
}
os << "]" << endl;
os << " normalBinding PER_FACE" << endl;
}
示例2: intro
void
write_strips(const BMESH &mesh, ostream &os)
{
const str_ptr intro(" coordIndex [");
Formatter out(&os, 77);
out.write(intro);
IVTriStripIterator iter(&out);
// from Bface::draw_strips()
for (int p = 0; p < mesh.patches().num(); p++) {
Patch *patch = mesh.patches()[p];
iter.set_left(patch->num_tri_strips());
patch->draw_tri_strips(&iter);
// If there are more patches, write out ", "
if (p < mesh.patches().num() - 1) os << ", ";
}
os << "]" << endl;
}