Package coppelia

Examples of coppelia.FloatWA


    float[] EndEffectorPosition = new float[3];
    EndEffectorPosition[0] = x;
    EndEffectorPosition[1] = y;
    EndEffectorPosition[2] = z;
   
    FloatWA position3d = new FloatWA(3);
    position3d.setArray(EndEffectorPosition);
   
    dynamotionServer.simxSetObjectPosition(clientID,endeffectorhandler,dynamotionServer.sim_handle_parent,position3d,dynamotionServer.simx_opmode_oneshot_wait);
  }
View Full Code Here


    float[] EndEffectorOrientation = new float[3];
    EndEffectorOrientation[0] = r;
    EndEffectorOrientation[1] = p;
    EndEffectorOrientation[2] = y;
   
    FloatWA orientation3d = new FloatWA(3);
    orientation3d.setArray(EndEffectorOrientation);
    dynamotionServer.simxSetObjectOrientation(clientID, endeffectorhandler,dynamotionServer.sim_handle_parent,orientation3d,dynamotionServer.simx_opmode_oneshot_wait);
  }
View Full Code Here

TOP

Related Classes of coppelia.FloatWA

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.