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


C++ Endpoint::getCoordinateFrame方法代码示例

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


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

示例1: main

int main(void) {
    using namespace mbslib;

    MbsCompoundWithBuilder mbs;

    mbs.addFixedBase();
    mbs.addFork();

    PrismaticJoint * pj = mbs.addPrismaticJoint(TVector3(1, 0, 0));
    Endpoint * s1End1 = mbs.addEndpoint();
    mbs.addFixedTranslation(TVector3(1, 0, 0));

    mbs.addFork();
    Endpoint * s1Midpoint = mbs.addEndpoint();

    mbs.addFixedTranslation(TVector3(1, 0, 0));

    RevoluteJoint * rj = mbs.addRevoluteJoint(TVector3(0, 0, 1));

    mbs.addFork();
    mbs.addFixedTranslation(TVector3(0, 1, 0));
    Endpoint * s1End2 = mbs.addEndpoint();
    mbs.addRigidLink(TVector3(1, 0, 0), TVector3::Zero(), 1, TMatrix3x3::Zero());
    Endpoint * tcp = mbs.addEndpoint();

    LinearSpringWithRopeModel springModel(1, 0, 1);
    Spring3D * spring = mbs.addSpring(springModel);
    (*spring) << s1End1 << s1Midpoint << s1End2;

    //mbs.doDirkin();

    //spring.resetForce();
    //spring.applyForce();

    mbs.doRne();

    std::cout << s1End1->getCoordinateFrame().r.transpose() << std::endl;
    std::cout << s1End2->getCoordinateFrame().r.transpose() << std::endl;
    std::cout << tcp->getCoordinateFrame().r.transpose() << std::endl;
    std::cout << spring->getSpringForce() << std::endl;
    std::cout << pj->getJointForceTorque() << std::endl;
    std::cout << rj->getJointForceTorque() << std::endl;
}
开发者ID:SIM-TU-Darmstadt,项目名称:mbslib,代码行数:43,代码来源:exp_13_springs_2.cpp

示例2: testfunction

TVector3 testfunction(TScalar l1, TScalar l2, TScalar q1, TScalar q2) {
    using namespace mbslib;

    MbsCompoundWithBuilder mbs;

    mbs.addFixedBase();
    Joint1DOF & j1 = *mbs.addRevoluteJoint(TVector3::UnitZ());
    mbs.addRigidLink(TVector3(l1, 0, 0), TVector3::Zero(), TScalar(1), TMatrix3x3::Zero());
    Joint1DOF & j2 = *mbs.addRevoluteJoint(TVector3::UnitZ());
    mbs.addRigidLink(TVector3(l2, 0, 0), TVector3::Zero(), TScalar(1), TMatrix3x3::Zero());
    Endpoint * tcp = mbs.addEndpoint();

    j1.setJointPosition(q1);
    j2.setJointPosition(q2);

    mbs.doDirkin();

    TMatrix6xX J = mbs.calculateJacobian(*tcp);

    std::cout << J << std::endl;

    return tcp->getCoordinateFrame().r;
}
开发者ID:SIM-TU-Darmstadt,项目名称:mbslib,代码行数:23,代码来源:exp_04_dirkin.cpp


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