本文整理汇总了C++中POVMS_Attribute::GetFloatVector方法的典型用法代码示例。如果您正苦于以下问题:C++ POVMS_Attribute::GetFloatVector方法的具体用法?C++ POVMS_Attribute::GetFloatVector怎么用?C++ POVMS_Attribute::GetFloatVector使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类POVMS_Attribute
的用法示例。
在下文中一共展示了POVMS_Attribute::GetFloatVector方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Get
std::vector<POVMSFloat> POVMS_Object::GetFloatVector(POVMSType key)
{
POVMS_Attribute attr;
Get(key, attr);
return attr.GetFloatVector();
}
示例2: DrawPixelSet
DrawFilledRectangleSet(sd, vd, msg, final);
break;
}
}
void ImageMessageHandler::DrawPixelSet(const SceneData& sd, const ViewData& vd, POVMS_Object& msg, bool final)
{
POVMS_Attribute pixelposattr;
POVMS_Attribute pixelcolattr;
unsigned int psize(msg.GetInt(kPOVAttrib_PixelSize));
msg.Get(kPOVAttrib_PixelPositions, pixelposattr);
msg.Get(kPOVAttrib_PixelColors, pixelcolattr);
vector<POVMSInt> pixelpositions(pixelposattr.GetIntVector());
vector<POVMSFloat> pixelcolors(pixelcolattr.GetFloatVector());
if((pixelpositions.size() / 2) != (pixelcolors.size() / 5))
throw POV_EXCEPTION(kInvalidDataSizeErr, "Number of pixel colors and pixel positions does not match!");
for(int i = 0, ii = 0; (i < pixelcolors.size()) && (ii < pixelpositions.size()); i += 5, ii += 2)
{
RGBTColour col(pixelcolors[i], pixelcolors[i + 1], pixelcolors[i + 2], pixelcolors[i + 4]); // NB pixelcolors[i + 3] is an unused channel
RGBTColour gcol(col);
unsigned int x(pixelpositions[ii]);
unsigned int y(pixelpositions[ii + 1]);
Display::RGBA8 rgba;
float dither = GetDitherOffset(x, y);
if (vd.display != nullptr)
{