Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
NxRevoluteJointDesc revDesc;
NxRevoluteJoint *revJoint;
revDesc.actor[0] = createCube(0, 50, 0);
revDesc.actor[1] = createCube(2, 50, 2);
revDesc.setGlobalAxis( NxVec3(1.0, 0.0, 0.0) );
revDesc.setGlobalAnchor( NxVec3(1.0, 0.0, 0.0) );
revJoint = (NxRevoluteJoint *)gScene->createJoint(revDesc);
revDesc.motor.maxForce = 1000;
revDesc.motor.velTarget = 10.0;
revDesc.flags |= NX_RJF_MOTOR_ENABLED;