本文整理汇总了C++中cg::visualization::printer_type::corner_stream方法的典型用法代码示例。如果您正苦于以下问题:C++ printer_type::corner_stream方法的具体用法?C++ printer_type::corner_stream怎么用?C++ printer_type::corner_stream使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cg::visualization::printer_type
的用法示例。
在下文中一共展示了printer_type::corner_stream方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "shortestPath" << cg::visualization::endl;
p.corner_stream() << "Double click to clear, right-click to add point." << cg::visualization::endl;
p.corner_stream() << "First and second points are start ans finish of the way" << cg::visualization::endl;
p.corner_stream() << "To end contour, click close to first point";
}
示例2: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "press mouse rbutton to add point" << cg::visualization::endl
<< "points: " << pts_.size() << " convex_hull: " << ch_size_ << cg::visualization::endl
<< "press 'g', 'q' or 'a' to change algorithm" << cg::visualization::endl;
switch (algo_)
{
case graham : p.corner_stream() << "algorithm: Graham" << cg::visualization::endl; break;
case andrew : p.corner_stream() << "algorithm: Andrew" << cg::visualization::endl; break;
case quick : p.corner_stream() << "algorithm: Quick hull" << cg::visualization::endl; break;
case jarvis : p.corner_stream() << "algorithm: Jarvis" << cg::visualization::endl; break;
}
}
示例3: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "press mouse rbutton near segment vertex to move it"
<< cg::visualization::endl
<< "if lines are green there is intersection"
<< cg::visualization::endl;
}
示例4: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "press mouse rbutton to add point" << cg::visualization::endl
<< "points: " << pts_.size() << " convex_hull: " << ch_size_ << cg::visualization::endl
<< "algo: " << type_s << cg::visualization::endl;
}
示例5: print
void print(cg::visualization::printer_type & p) const override
{
p.corner_stream() << "press mouse lbutton with CTRL key near contour vertex to move it"
<< cg::visualization::endl
<< "if triangle is green contour contains cursor point"
<< cg::visualization::endl;
}
示例6: print
void print(cg::visualization::printer_type & p) const override
{
p.corner_stream() << "eps: " << eps * 10
<< cg::visualization::endl
<< "size: " << chain.size()
<< cg::visualization::endl;
}
示例7: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "press mouse rbutton to add vertex" << cg::visualization::endl
<< "first two points - start and finish" << cg::visualization::endl
<< "double-click to clear" << cg::visualization::endl
<< "press space to start a new contour" << cg::visualization::endl;
}
示例8: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "double-click to clear." << cg::visualization::endl
<< "press mouse rbutton for add vertex (click to first point to complete contour)" << cg::visualization::endl
<< "move vertex with rbutton" << cg::visualization::endl
<< "eps:" << eps << cg::visualization::endl;
for (size_t i = 0; i < points_.size(); ++i)
{
p.global_stream((point_2f)points_[i] + vector_2f(5, 0)) << i;
}
}
示例9: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "double-click to clear." << cg::visualization::endl
<< "press mouse rbutton for add vertex (click to first point to complete contour)" << cg::visualization::endl
<< "move vertex with rbutton" << cg::visualization::endl
<< "yellow contour -- not ccw or convex" << cg::visualization::endl
<< "green contour -- contains cursor" << cg::visualization::endl
<< "red contour -- don't contains cursor" << cg::visualization::endl;
for (size_t i = 0; i < points_.size(); ++i)
{
p.global_stream((point_2f)points_[i] + vector_2f(5, 0)) << i;
}
}
示例10: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "right click: add point" << cg::visualization::endl;
p.corner_stream() << (check_delaunay(answer) ? "OK" : "HE OK") << cg::visualization::endl;
}
示例11: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "press mouse rbutton to add vertex" << cg::visualization::endl
<< "double-click on vertex to remove" << cg::visualization::endl
<< "double-click anywhere but vertices to clear" << cg::visualization::endl;
}
示例12: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "double-click to clear." << cg::visualization::endl
<< "press mouse rbutton for add vertex (click to first point to complete contour)" << cg::visualization::endl
<< "move vertex with rbutton" << cg::visualization::endl;
}
示例13: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "rigth click: add point" << cg::visualization::endl;
p.corner_stream() << (check(trs) ? "Ok" : "Fail") << cg::visualization::endl;
}
示例14: print
// print in the corner
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "press mouse rbutton to add point" << cg::visualization::endl
<< "points: " << pts_.size() << cg::visualization::endl;
}
示例15: print
void print(cg::visualization::printer_type & p) const
{
p.corner_stream() << "minkowski sum of two convex contour." << cg::visualization::endl;
p.corner_stream() << "Double click to clear, right-click to add point.";
}