Package com.bulletphysics.dynamics.constraintsolver

Examples of com.bulletphysics.dynamics.constraintsolver.RotationalLimitMotor


  @Override
  public void actuate(EvolvableBoxAgent3DEnvironment env,
      EvolvableBoxAgent3D agent) {
    // Get the RotationalLimitMotor for the appendix.
    EvolvableBoxAgent3DAppendix appendix = agent.getAppendices().get(this.appendixId);
    RotationalLimitMotor rlm = appendix.getConstraint().getRotationalLimitMotor(appendix.getFreeAxis());
   
    //NEU
    double valueFromBrain = agent.getActuatorWerte()[appendixId-1];
    //normalizedAngle = valueFromBrain;
    normalizedAngle = normalizedAngle * Math.PI;
 
View Full Code Here

TOP

Related Classes of com.bulletphysics.dynamics.constraintsolver.RotationalLimitMotor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.