本文整理汇总了C++中vec3f::length2方法的典型用法代码示例。如果您正苦于以下问题:C++ vec3f::length2方法的具体用法?C++ vec3f::length2怎么用?C++ vec3f::length2使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vec3f
的用法示例。
在下文中一共展示了vec3f::length2方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: addGroup
void Logstalgia::addGroup(std::string grouptitle, std::string groupregex, int percent, vec3f colour) {
if(percent<0) return;
int remainpc = (int) ( ((float) remaining_space/total_space) * 100);
if(percent==0) {
percent=remainpc;
}
if(remainpc<percent) return;
int space = (int) ( ((float)percent/100) * total_space );
int top_gap = total_space - remaining_space;
int bottom_gap = display.height - (total_space - remaining_space + space);
//debugLog("group %s: regex = %s, remainpc = %d, space = %d, top_gap = %d, bottom_gap = %d\n",
// grouptitle.c_str(), groupregex.c_str(), remainpc, space, top_gap, bottom_gap);
Summarizer* summ = new Summarizer(fontSmall, paddle_x, top_gap, bottom_gap, update_rate, groupregex, grouptitle);
// summ->showCount(true);
if(colour.length2() > 0.01f) {
summ->setColour(colour);
}
summGroups.push_back(summ);
remaining_space -= space;
}