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


C++ Mat4::representation方法代码示例

本文整理汇总了C++中Mat4::representation方法的典型用法代码示例。如果您正苦于以下问题:C++ Mat4::representation方法的具体用法?C++ Mat4::representation怎么用?C++ Mat4::representation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mat4的用法示例。


在下文中一共展示了Mat4::representation方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1:

Mat4 operator-(const Mat4& l, const Mat4& r)
{
    std::vector<Vec::Vector> temp{};
    int count{0};

    for (auto& i : l.representation())
        temp.push_back(i);
    
    for (auto& i : r.representation())
        temp.at(count++) -= i;
    
    Mat4 result{temp};
    return result;
}
开发者ID:CCJY,项目名称:coliru,代码行数:14,代码来源:main.cpp

示例2: reverse

Mat4 reverse(const Mat4& m)
{
    std::vector<Vec::Vector> temp(4);
    int count{0};

    for (auto& i : m.representation())
        temp.at(count++) = i;

    std::swap(temp.at(0), temp.at(3));
    std::swap(temp.at(1), temp.at(2));
    Mat4 result{temp};
    return result;
}
开发者ID:CCJY,项目名称:coliru,代码行数:13,代码来源:main.cpp

示例3: elems

Mat4 operator*(const Mat4& l, const Mat4& r)
{
    Mat4 transformed{reverse(rotateAntiClockwise(r))};
    std::vector<Vec::Vector> rows{(l.getVecSize() == r.getVecSize() ? l.getVecSize() : -1)};
    int rowCount{0};

    for (auto& i : l.representation()) //for every row
    {
        std::vector<float> elems(l.getVecSize());
        for (int j = 0; j < l.getVecSize(); ++j)
        {
            int elemCount{0};
            for (auto& k : transformed.representation())
                elems.at(elemCount++) += k.representation().at(j) * i.representation().at(j);
        } 
        rows.at(rowCount++) = elems;
    }

    Mat4 result{rows};
    return result;
}
开发者ID:CCJY,项目名称:coliru,代码行数:21,代码来源:main.cpp

示例4: rotateAntiClockwise

Mat4 rotateAntiClockwise(const Mat4& m)
{
    using namespace std;
    std::map<int, Vec::Vector> rows{};
    std::map<int, std::vector<float>> elems{};
    
    //this eliminates magic numbers and many variables
    std::vector<Vec::Vector> rv(m.getVecSize());
    for (int i = 0; i < m.getVecSize(); ++i)
        rows[i] = rv.at(i);

    //as above
    std::vector<std::vector<float>> rf(m.getVecSize());
    for (int i = 0; i < m.getVecSize(); ++i)
        elems[i] = rf.at(i);

    for (auto& i : m.representation()) //for every Vector
    {   
        for (int j = 0; j < m.getVecSize(); ++j) //for every element in every vector in the Vector
        {
            elems[j].push_back(i.representation().at(j));
            rows[j] = elems[j];
            for (auto k : rows[j])
            {
                cout <<" Hey" << endl;
            }
        }
    }

    std::vector<Vec::Vector> temp{};
    for (int i = m.getVecSize() - 1; i >= 0; --i){
        temp.push_back(rows[i]);
        cout << temp.size() << endl;
    }
    
    Mat4 result{temp};
    return result;
}
开发者ID:CCJY,项目名称:coliru,代码行数:38,代码来源:main.cpp


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