当前位置: 首页>>代码示例>>C++>>正文


C++ POVMS_Attribute::GetFloatVector方法代码示例

本文整理汇总了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();
}
开发者ID:wfpokorny,项目名称:povray,代码行数:8,代码来源:povmscpp.cpp

示例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)
        {
开发者ID:wfpokorny,项目名称:povray,代码行数:31,代码来源:imagemessagehandler.cpp


注:本文中的POVMS_Attribute::GetFloatVector方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。