本文整理汇总了C++中variant::as_list_decimal方法的典型用法代码示例。如果您正苦于以下问题:C++ variant::as_list_decimal方法的具体用法?C++ variant::as_list_decimal怎么用?C++ variant::as_list_decimal使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类variant
的用法示例。
在下文中一共展示了variant::as_list_decimal方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
template<> decimal manhattan_distance(const variant& p1, const variant& p2) {
const std::vector<decimal>& v1 = p1.as_list_decimal();
const std::vector<decimal>& v2 = p2.as_list_decimal();
decimal x1 = v1[0] - v2[0];
decimal x2 = v1[1] - v2[1];
return (x1 < 0 ? -x1 : x1) + (x2 < 0 ? -x2 : x2);
}
示例2:
rectf::rectf(const variant& value)
{
std::vector<decimal> v = value.as_list_decimal();
switch(v.size()) {
case 2:
*this = rectf::from_area(GLfloat(v[0].as_float()), GLfloat(v[1].as_float()), 0, 0);
break;
case 3:
*this = rectf::from_area(GLfloat(v[0].as_float()), GLfloat(v[1].as_float()), GLfloat(v[2].as_float()), 0);
break;
case 4:
*this = rectf::from_area(GLfloat(v[0].as_float()), GLfloat(v[1].as_float()), GLfloat(v[2].as_float()), GLfloat(v[3].as_float()));
break;
default:
*this = rectf();
break;
}
}