v_repLib.cpp
Go to the documentation of this file.
1 // This file is part of V-REP, the Virtual Robot Experimentation Platform.
2 //
3 // Copyright 2006-2016 Coppelia Robotics GmbH. All rights reserved.
4 // marc@coppeliarobotics.com
5 // www.coppeliarobotics.com
6 //
7 // V-REP is dual-licensed, under the terms of EITHER (at your option):
8 // 1. V-REP commercial license (contact us for details)
9 // 2. GNU GPL (see below)
10 //
11 // GNU GPL license:
12 // -------------------------------------------------------------------
13 // V-REP is free software: you can redistribute it and/or modify
14 // it under the terms of the GNU General Public License as published by
15 // the Free Software Foundation, either version 3 of the License, or
16 // (at your option) any later version.
17 //
18 // V-REP IS DISTRIBUTED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
19 // WARRANTY. THE USER WILL USE IT AT HIS/HER OWN RISK. THE ORIGINAL
20 // AUTHORS AND COPPELIA ROBOTICS GMBH WILL NOT BE LIABLE FOR DATA LOSS,
21 // DAMAGES, LOSS OF PROFITS OR ANY OTHER KIND OF LOSS WHILE USING OR
22 // MISUSING THIS SOFTWARE.
23 //
24 // See the GNU General Public License for more details.
25 //
26 // You should have received a copy of the GNU General Public License
27 // along with V-REP. If not, see <http://www.gnu.org/licenses/>.
28 // -------------------------------------------------------------------
29 //
30 // This file was automatically created for V-REP release V3.3.2 on August 29th 2016
31 
32 #include "../include/v_repLib.h"
33 #include <stdio.h>
34 #if defined (__linux) || defined (__APPLE__)
35  #include <dlfcn.h>
36 #endif
37 
38 #ifndef V_REP_LIBRARY
39 
489 
490 
491 
492 
581 
582 
583 // Deprecated begin
619 // Deprecated end
620 
621 
622 LIBRARY loadVrepLibrary(const char* pathAndFilename)
623 {
624  #ifdef QT_FRAMEWORK
625  QLibrary* lib=new QLibrary(pathAndFilename);
626  if (!lib->load())
627  {
628  delete lib;
629  lib=NULL;
630  }
631  return lib;
632  #else
633  #ifdef _WIN32
634  return LoadLibraryA(pathAndFilename);
635  #elif defined (__linux) || defined (__APPLE__)
636  return dlopen(pathAndFilename,RTLD_LAZY);
637  #endif
638  #endif // QT_FRAMEWORK
639 }
640 
641 void unloadVrepLibrary(LIBRARY lib)
642 {
643  #ifdef QT_FRAMEWORK
644  if (lib!=0)
645  {
646  lib->unload();
647  delete lib;
648  }
649  #else
650  #ifdef _WIN32
651  if (lib!=0)
652  FreeLibrary(lib);
653  #elif defined (__linux) || defined (__APPLE__)
654  dlclose(lib);
655  #endif
656  #endif // QT_FRAMEWORK
657 }
658 
659 FARPROC _getProcAddress(LIBRARY lib,const char* funcName)
660 {
661  #ifdef QT_FRAMEWORK
662  return (void*)lib->resolve(funcName);
663  #else
664  #ifdef _WIN32
665  return GetProcAddress(lib,funcName);
666  #elif defined (__linux) || defined (__APPLE__)
667  return dlsym(lib,funcName);
668  #endif
669  #endif // QT_FRAMEWORK
670 }
671 
672 int getVrepProcAddresses(LIBRARY lib)
673 {
674  simRunSimulator=(ptrSimRunSimulator)(_getProcAddress(lib,"simRunSimulator"));
675  simGetSimulatorMessage=(ptrSimGetSimulatorMessage)(_getProcAddress(lib,"simGetSimulatorMessage"));
676  simGetMainWindow=(ptrSimGetMainWindow)(_getProcAddress(lib,"simGetMainWindow"));
677  simGetLastError=(ptrSimGetLastError)(_getProcAddress(lib,"simGetLastError"));
678  simLoadModule=(ptrSimLoadModule)(_getProcAddress(lib,"simLoadModule"));
679  simUnloadModule=(ptrSimUnloadModule)(_getProcAddress(lib,"simUnloadModule"));
680  simSendModuleMessage=(ptrSimSendModuleMessage)(_getProcAddress(lib,"simSendModuleMessage"));
681  simSetBooleanParameter=(ptrSimSetBooleanParameter)(_getProcAddress(lib,"simSetBooleanParameter"));
682  simGetBooleanParameter=(ptrSimGetBooleanParameter)(_getProcAddress(lib,"simGetBooleanParameter"));
683  simSetBoolParameter=(ptrSimSetBoolParameter)(_getProcAddress(lib,"simSetBoolParameter"));
684  simGetBoolParameter=(ptrSimGetBoolParameter)(_getProcAddress(lib,"simGetBoolParameter"));
685  simSetIntegerParameter=(ptrSimSetIntegerParameter)(_getProcAddress(lib,"simSetIntegerParameter"));
686  simGetIntegerParameter=(ptrSimGetIntegerParameter)(_getProcAddress(lib,"simGetIntegerParameter"));
687  simSetInt32Parameter=(ptrSimSetInt32Parameter)(_getProcAddress(lib,"simSetInt32Parameter"));
688  simGetInt32Parameter=(ptrSimGetInt32Parameter)(_getProcAddress(lib,"simGetInt32Parameter"));
689  simGetUInt64Parameter=(ptrSimGetUInt64Parameter)(_getProcAddress(lib,"simGetUInt64Parameter"));
690  simSetFloatingParameter=(ptrSimSetFloatingParameter)(_getProcAddress(lib,"simSetFloatingParameter"));
691  simGetFloatingParameter=(ptrSimGetFloatingParameter)(_getProcAddress(lib,"simGetFloatingParameter"));
692  simSetFloatParameter=(ptrSimSetFloatParameter)(_getProcAddress(lib,"simSetFloatParameter"));
693  simGetFloatParameter=(ptrSimGetFloatParameter)(_getProcAddress(lib,"simGetFloatParameter"));
694  simSetStringParameter=(ptrSimSetStringParameter)(_getProcAddress(lib,"simSetStringParameter"));
695  simGetStringParameter=(ptrSimGetStringParameter)(_getProcAddress(lib,"simGetStringParameter"));
696  simGetObjectHandle=(ptrSimGetObjectHandle)(_getProcAddress(lib,"simGetObjectHandle"));
697  simRemoveObject=(ptrSimRemoveObject)(_getProcAddress(lib,"simRemoveObject"));
698  simRemoveModel=(ptrSimRemoveModel)(_getProcAddress(lib,"simRemoveModel"));
699  simGetObjectName=(ptrSimGetObjectName)(_getProcAddress(lib,"simGetObjectName"));
700  simGetObjects=(ptrSimGetObjects)(_getProcAddress(lib,"simGetObjects"));
701  simSetObjectName=(ptrSimSetObjectName)(_getProcAddress(lib,"simSetObjectName"));
702  simGetCollectionHandle=(ptrSimGetCollectionHandle)(_getProcAddress(lib,"simGetCollectionHandle"));
703  simRemoveCollection=(ptrSimRemoveCollection)(_getProcAddress(lib,"simRemoveCollection"));
704  simEmptyCollection=(ptrSimEmptyCollection)(_getProcAddress(lib,"simEmptyCollection"));
705  simGetCollectionName=(ptrSimGetCollectionName)(_getProcAddress(lib,"simGetCollectionName"));
706  simSetCollectionName=(ptrSimSetCollectionName)(_getProcAddress(lib,"simSetCollectionName"));
707  simGetObjectMatrix=(ptrSimGetObjectMatrix)(_getProcAddress(lib,"simGetObjectMatrix"));
708  simSetObjectMatrix=(ptrSimSetObjectMatrix)(_getProcAddress(lib,"simSetObjectMatrix"));
709  simGetObjectPosition=(ptrSimGetObjectPosition)(_getProcAddress(lib,"simGetObjectPosition"));
710  simSetObjectPosition=(ptrSimSetObjectPosition)(_getProcAddress(lib,"simSetObjectPosition"));
711  simGetObjectOrientation=(ptrSimGetObjectOrientation)(_getProcAddress(lib,"simGetObjectOrientation"));
712  simSetObjectOrientation=(ptrSimSetObjectOrientation)(_getProcAddress(lib,"simSetObjectOrientation"));
713  simGetJointPosition=(ptrSimGetJointPosition)(_getProcAddress(lib,"simGetJointPosition"));
714  simSetJointPosition=(ptrSimSetJointPosition)(_getProcAddress(lib,"simSetJointPosition"));
715  simSetJointTargetPosition=(ptrSimSetJointTargetPosition)(_getProcAddress(lib,"simSetJointTargetPosition"));
716  simGetJointTargetPosition=(ptrSimGetJointTargetPosition)(_getProcAddress(lib,"simGetJointTargetPosition"));
717  simSetJointForce=(ptrSimSetJointForce)(_getProcAddress(lib,"simSetJointForce"));
718  simGetPathPosition=(ptrSimGetPathPosition)(_getProcAddress(lib,"simGetPathPosition"));
719  simSetPathPosition=(ptrSimSetPathPosition)(_getProcAddress(lib,"simSetPathPosition"));
720  simGetPathLength=(ptrSimGetPathLength)(_getProcAddress(lib,"simGetPathLength"));
721  simGetJointMatrix=(ptrSimGetJointMatrix)(_getProcAddress(lib,"simGetJointMatrix"));
722  simSetSphericalJointMatrix=(ptrSimSetSphericalJointMatrix)(_getProcAddress(lib,"simSetSphericalJointMatrix"));
723  simGetJointInterval=(ptrSimGetJointInterval)(_getProcAddress(lib,"simGetJointInterval"));
724  simSetJointInterval=(ptrSimSetJointInterval)(_getProcAddress(lib,"simSetJointInterval"));
725  simGetObjectParent=(ptrSimGetObjectParent)(_getProcAddress(lib,"simGetObjectParent"));
726  simGetObjectChild=(ptrSimGetObjectChild)(_getProcAddress(lib,"simGetObjectChild"));
727  simSetObjectParent=(ptrSimSetObjectParent)(_getProcAddress(lib,"simSetObjectParent"));
728  simGetObjectType=(ptrSimGetObjectType)(_getProcAddress(lib,"simGetObjectType"));
729  simGetJointType=(ptrSimGetJointType)(_getProcAddress(lib,"simGetJointType"));
730  simBuildIdentityMatrix=(ptrSimBuildIdentityMatrix)(_getProcAddress(lib,"simBuildIdentityMatrix"));
731  simCopyMatrix=(ptrSimCopyMatrix)(_getProcAddress(lib,"simCopyMatrix"));
732  simBuildMatrix=(ptrSimBuildMatrix)(_getProcAddress(lib,"simBuildMatrix"));
733  simGetEulerAnglesFromMatrix=(ptrSimGetEulerAnglesFromMatrix)(_getProcAddress(lib,"simGetEulerAnglesFromMatrix"));
734  simInvertMatrix=(ptrSimInvertMatrix)(_getProcAddress(lib,"simInvertMatrix"));
735  simMultiplyMatrices=(ptrSimMultiplyMatrices)(_getProcAddress(lib,"simMultiplyMatrices"));
736  simInterpolateMatrices=(ptrSimInterpolateMatrices)(_getProcAddress(lib,"simInterpolateMatrices"));
737  simTransformVector=(ptrSimTransformVector)(_getProcAddress(lib,"simTransformVector"));
738  simReservedCommand=(ptrSimReservedCommand)(_getProcAddress(lib,"simReservedCommand"));
739  simGetSimulationTime=(ptrSimGetSimulationTime)(_getProcAddress(lib,"simGetSimulationTime"));
740  simGetSimulationState=(ptrSimGetSimulationState)(_getProcAddress(lib,"simGetSimulationState"));
741  simGetSystemTime=(ptrSimGetSystemTime)(_getProcAddress(lib,"simGetSystemTime"));
743  simGetSystemTimeInMs=(ptrSimGetSystemTimeInMs)(_getProcAddress(lib,"simGetSystemTimeInMs"));
744  simLoadScene=(ptrSimLoadScene)(_getProcAddress(lib,"simLoadScene"));
745  simCloseScene=(ptrSimCloseScene)(_getProcAddress(lib,"simCloseScene"));
746  simSaveScene=(ptrSimSaveScene)(_getProcAddress(lib,"simSaveScene"));
747  simLoadModel=(ptrSimLoadModel)(_getProcAddress(lib,"simLoadModel"));
748  simSaveModel=(ptrSimSaveModel)(_getProcAddress(lib,"simSaveModel"));
749  simLoadUI=(ptrSimLoadUI)(_getProcAddress(lib,"simLoadUI"));
750  simSaveUI=(ptrSimSaveUI)(_getProcAddress(lib,"simSaveUI"));
751  simAddStatusbarMessage=(ptrSimAddStatusbarMessage)(_getProcAddress(lib,"simAddStatusbarMessage"));
752  simAddModuleMenuEntry=(ptrSimAddModuleMenuEntry)(_getProcAddress(lib,"simAddModuleMenuEntry"));
753  simSetModuleMenuItemState=(ptrSimSetModuleMenuItemState)(_getProcAddress(lib,"simSetModuleMenuItemState"));
754  simDoesFileExist=(ptrSimDoesFileExist)(_getProcAddress(lib,"simDoesFileExist"));
755  simIsObjectInSelection=(ptrSimIsObjectInSelection)(_getProcAddress(lib,"simIsObjectInSelection"));
756  simAddObjectToSelection=(ptrSimAddObjectToSelection)(_getProcAddress(lib,"simAddObjectToSelection"));
758  simGetObjectSelectionSize=(ptrSimGetObjectSelectionSize)(_getProcAddress(lib,"simGetObjectSelectionSize"));
759  simGetObjectLastSelection=(ptrSimGetObjectLastSelection)(_getProcAddress(lib,"simGetObjectLastSelection"));
760  simGetObjectSelection=(ptrSimGetObjectSelection)(_getProcAddress(lib,"simGetObjectSelection"));
761  simHandleCollision=(ptrSimHandleCollision)(_getProcAddress(lib,"simHandleCollision"));
762  simReadCollision=(ptrSimReadCollision)(_getProcAddress(lib,"simReadCollision"));
763  simHandleDistance=(ptrSimHandleDistance)(_getProcAddress(lib,"simHandleDistance"));
764  simReadDistance=(ptrSimReadDistance)(_getProcAddress(lib,"simReadDistance"));
765  simHandleProximitySensor=(ptrSimHandleProximitySensor)(_getProcAddress(lib,"simHandleProximitySensor"));
766  simReadProximitySensor=(ptrSimReadProximitySensor)(_getProcAddress(lib,"simReadProximitySensor"));
767  simHandleMill=(ptrSimHandleMill)(_getProcAddress(lib,"simHandleMill"));
768  simHandleIkGroup=(ptrSimHandleIkGroup)(_getProcAddress(lib,"simHandleIkGroup"));
769  simCheckIkGroup=(ptrSimCheckIkGroup)(_getProcAddress(lib,"simCheckIkGroup"));
770  simHandleDynamics=(ptrSimHandleDynamics)(_getProcAddress(lib,"simHandleDynamics"));
771  simGetMechanismHandle=(ptrSimGetMechanismHandle)(_getProcAddress(lib,"simGetMechanismHandle"));
772  simHandleMechanism=(ptrSimHandleMechanism)(_getProcAddress(lib,"simHandleMechanism"));
773  simGetScriptHandle=(ptrSimGetScriptHandle)(_getProcAddress(lib,"simGetScriptHandle"));
774  simSetScriptText=(ptrSimSetScriptText)(_getProcAddress(lib,"simSetScriptText"));
775  simGetScriptText=(ptrSimGetScriptText)(_getProcAddress(lib,"simGetScriptText"));
776  simGetScriptProperty=(ptrSimGetScriptProperty)(_getProcAddress(lib,"simGetScriptProperty"));
778  simGetScript=(ptrSimGetScript)(_getProcAddress(lib,"simGetScript"));
782  simGetScriptName=(ptrSimGetScriptName)(_getProcAddress(lib,"simGetScriptName"));
783  simHandleMainScript=(ptrSimHandleMainScript)(_getProcAddress(lib,"simHandleMainScript"));
785  simResetScript=(ptrSimResetScript)(_getProcAddress(lib,"simResetScript"));
786  simAddScript=(ptrSimAddScript)(_getProcAddress(lib,"simAddScript"));
787  simRemoveScript=(ptrSimRemoveScript)(_getProcAddress(lib,"simRemoveScript"));
788  simRefreshDialogs=(ptrSimRefreshDialogs)(_getProcAddress(lib,"simRefreshDialogs"));
789  simGetCollisionHandle=(ptrSimGetCollisionHandle)(_getProcAddress(lib,"simGetCollisionHandle"));
790  simGetDistanceHandle=(ptrSimGetDistanceHandle)(_getProcAddress(lib,"simGetDistanceHandle"));
791  simGetIkGroupHandle=(ptrSimGetIkGroupHandle)(_getProcAddress(lib,"simGetIkGroupHandle"));
792  simResetCollision=(ptrSimResetCollision)(_getProcAddress(lib,"simResetCollision"));
793  simResetDistance=(ptrSimResetDistance)(_getProcAddress(lib,"simResetDistance"));
794  simResetProximitySensor=(ptrSimResetProximitySensor)(_getProcAddress(lib,"simResetProximitySensor"));
795  simResetMill=(ptrSimResetMill)(_getProcAddress(lib,"simResetMill"));
796  simCheckProximitySensor=(ptrSimCheckProximitySensor)(_getProcAddress(lib,"simCheckProximitySensor"));
797  simCheckProximitySensorEx=(ptrSimCheckProximitySensorEx)(_getProcAddress(lib,"simCheckProximitySensorEx"));
798  simCheckProximitySensorEx2=(ptrSimCheckProximitySensorEx2)(_getProcAddress(lib,"simCheckProximitySensorEx2"));
799  simAddSceneCustomData=(ptrSimAddSceneCustomData)(_getProcAddress(lib,"simAddSceneCustomData"));
800  simGetSceneCustomDataLength=(ptrSimGetSceneCustomDataLength)(_getProcAddress(lib,"simGetSceneCustomDataLength"));
801  simGetSceneCustomData=(ptrSimGetSceneCustomData)(_getProcAddress(lib,"simGetSceneCustomData"));
802  simAddObjectCustomData=(ptrSimAddObjectCustomData)(_getProcAddress(lib,"simAddObjectCustomData"));
804  simGetObjectCustomData=(ptrSimGetObjectCustomData)(_getProcAddress(lib,"simGetObjectCustomData"));
805  simCreateBuffer=(ptrSimCreateBuffer)(_getProcAddress(lib,"simCreateBuffer"));
806  simReleaseBuffer=(ptrSimReleaseBuffer)(_getProcAddress(lib,"simReleaseBuffer"));
807  simCheckCollision=(ptrSimCheckCollision)(_getProcAddress(lib,"simCheckCollision"));
808  simCheckCollisionEx=(ptrSimCheckCollisionEx)(_getProcAddress(lib,"simCheckCollisionEx"));
809  simCheckDistance=(ptrSimCheckDistance)(_getProcAddress(lib,"simCheckDistance"));
810  simGetObjectConfiguration=(ptrSimGetObjectConfiguration)(_getProcAddress(lib,"simGetObjectConfiguration"));
811  simSetObjectConfiguration=(ptrSimSetObjectConfiguration)(_getProcAddress(lib,"simSetObjectConfiguration"));
812  simGetConfigurationTree=(ptrSimGetConfigurationTree)(_getProcAddress(lib,"simGetConfigurationTree"));
813  simSetConfigurationTree=(ptrSimSetConfigurationTree)(_getProcAddress(lib,"simSetConfigurationTree"));
814  simSetSimulationTimeStep=(ptrSimSetSimulationTimeStep)(_getProcAddress(lib,"simSetSimulationTimeStep"));
815  simGetSimulationTimeStep=(ptrSimGetSimulationTimeStep)(_getProcAddress(lib,"simGetSimulationTimeStep"));
816  simGetRealTimeSimulation=(ptrSimGetRealTimeSimulation)(_getProcAddress(lib,"simGetRealTimeSimulation"));
818  simAdjustRealTimeTimer=(ptrSimAdjustRealTimeTimer)(_getProcAddress(lib,"simAdjustRealTimeTimer"));
821  simStartSimulation=(ptrSimStartSimulation)(_getProcAddress(lib,"simStartSimulation"));
822  simStopSimulation=(ptrSimStopSimulation)(_getProcAddress(lib,"simStopSimulation"));
823  simPauseSimulation=(ptrSimPauseSimulation)(_getProcAddress(lib,"simPauseSimulation"));
824  simBroadcastMessage=(ptrSimBroadcastMessage)(_getProcAddress(lib,"simBroadcastMessage"));
825  simGetModuleName=(ptrSimGetModuleName)(_getProcAddress(lib,"simGetModuleName"));
828  simFloatingViewAdd=(ptrSimFloatingViewAdd)(_getProcAddress(lib,"simFloatingViewAdd"));
829  simFloatingViewRemove=(ptrSimFloatingViewRemove)(_getProcAddress(lib,"simFloatingViewRemove"));
830  simAdjustView=(ptrSimAdjustView)(_getProcAddress(lib,"simAdjustView"));
831  simSetLastError=(ptrSimSetLastError)(_getProcAddress(lib,"simSetLastError"));
832  simHandleGraph=(ptrSimHandleGraph)(_getProcAddress(lib,"simHandleGraph"));
833  simResetGraph=(ptrSimResetGraph)(_getProcAddress(lib,"simResetGraph"));
834  simSetNavigationMode=(ptrSimSetNavigationMode)(_getProcAddress(lib,"simSetNavigationMode"));
835  simGetNavigationMode=(ptrSimGetNavigationMode)(_getProcAddress(lib,"simGetNavigationMode"));
836  simSetPage=(ptrSimSetPage)(_getProcAddress(lib,"simSetPage"));
837  simGetPage=(ptrSimGetPage)(_getProcAddress(lib,"simGetPage"));
838  simDisplayDialog=(ptrSimDisplayDialog)(_getProcAddress(lib,"simDisplayDialog"));
839  simGetDialogResult=(ptrSimGetDialogResult)(_getProcAddress(lib,"simGetDialogResult"));
840  simGetDialogInput=(ptrSimGetDialogInput)(_getProcAddress(lib,"simGetDialogInput"));
841  simEndDialog=(ptrSimEndDialog)(_getProcAddress(lib,"simEndDialog"));
845  simRegisterScriptVariable=(ptrSimRegisterScriptVariable)(_getProcAddress(lib,"simRegisterScriptVariable"));
846  simSetJointTargetVelocity=(ptrSimSetJointTargetVelocity)(_getProcAddress(lib,"simSetJointTargetVelocity"));
847  simGetJointTargetVelocity=(ptrSimGetJointTargetVelocity)(_getProcAddress(lib,"simGetJointTargetVelocity"));
849  simGetScriptRawBuffer=(ptrSimGetScriptRawBuffer)(_getProcAddress(lib,"simGetScriptRawBuffer"));
850  simSetScriptRawBuffer=(ptrSimSetScriptRawBuffer)(_getProcAddress(lib,"simSetScriptRawBuffer"));
851  simReleaseScriptRawBuffer=(ptrSimReleaseScriptRawBuffer)(_getProcAddress(lib,"simReleaseScriptRawBuffer"));
852  simCopyPasteObjects=(ptrSimCopyPasteObjects)(_getProcAddress(lib,"simCopyPasteObjects"));
853  simScaleSelectedObjects=(ptrSimScaleSelectedObjects)(_getProcAddress(lib,"simScaleSelectedObjects"));
854  simScaleObjects=(ptrSimScaleObjects)(_getProcAddress(lib,"simScaleObjects"));
855  simDeleteSelectedObjects=(ptrSimDeleteSelectedObjects)(_getProcAddress(lib,"simDeleteSelectedObjects"));
857  simGetNameSuffix=(ptrSimGetNameSuffix)(_getProcAddress(lib,"simGetNameSuffix"));
858  simSendData=(ptrSimSendData)(_getProcAddress(lib,"simSendData"));
859  simReceiveData=(ptrSimReceiveData)(_getProcAddress(lib,"simReceiveData"));
860  simSetGraphUserData=(ptrSimSetGraphUserData)(_getProcAddress(lib,"simSetGraphUserData"));
861  simSetNameSuffix=(ptrSimSetNameSuffix)(_getProcAddress(lib,"simSetNameSuffix"));
862  simAddDrawingObject=(ptrSimAddDrawingObject)(_getProcAddress(lib,"simAddDrawingObject"));
863  simRemoveDrawingObject=(ptrSimRemoveDrawingObject)(_getProcAddress(lib,"simRemoveDrawingObject"));
864  simAddDrawingObjectItem=(ptrSimAddDrawingObjectItem)(_getProcAddress(lib,"simAddDrawingObjectItem"));
865  simAddParticleObject=(ptrSimAddParticleObject)(_getProcAddress(lib,"simAddParticleObject"));
866  simRemoveParticleObject=(ptrSimRemoveParticleObject)(_getProcAddress(lib,"simRemoveParticleObject"));
867  simAddParticleObjectItem=(ptrSimAddParticleObjectItem)(_getProcAddress(lib,"simAddParticleObjectItem"));
868  simGetObjectSizeFactor=(ptrSimGetObjectSizeFactor)(_getProcAddress(lib,"simGetObjectSizeFactor"));
870  simResetMilling=(ptrSimResetMilling)(_getProcAddress(lib,"simResetMilling"));
871  simApplyMilling=(ptrSimApplyMilling)(_getProcAddress(lib,"simApplyMilling"));
872  simSetIntegerSignal=(ptrSimSetIntegerSignal)(_getProcAddress(lib,"simSetIntegerSignal"));
873  simGetIntegerSignal=(ptrSimGetIntegerSignal)(_getProcAddress(lib,"simGetIntegerSignal"));
874  simClearIntegerSignal=(ptrSimClearIntegerSignal)(_getProcAddress(lib,"simClearIntegerSignal"));
875  simSetFloatSignal=(ptrSimSetFloatSignal)(_getProcAddress(lib,"simSetFloatSignal"));
876  simGetFloatSignal=(ptrSimGetFloatSignal)(_getProcAddress(lib,"simGetFloatSignal"));
877  simClearFloatSignal=(ptrSimClearFloatSignal)(_getProcAddress(lib,"simClearFloatSignal"));
878  simSetStringSignal=(ptrSimSetStringSignal)(_getProcAddress(lib,"simSetStringSignal"));
879  simGetStringSignal=(ptrSimGetStringSignal)(_getProcAddress(lib,"simGetStringSignal"));
880  simClearStringSignal=(ptrSimClearStringSignal)(_getProcAddress(lib,"simClearStringSignal"));
881  simGetSignalName=(ptrSimGetSignalName)(_getProcAddress(lib,"simGetSignalName"));
882  simSetObjectProperty=(ptrSimSetObjectProperty)(_getProcAddress(lib,"simSetObjectProperty"));
883  simGetObjectProperty=(ptrSimGetObjectProperty)(_getProcAddress(lib,"simGetObjectProperty"));
884  simSetObjectSpecialProperty=(ptrSimSetObjectSpecialProperty)(_getProcAddress(lib,"simSetObjectSpecialProperty"));
885  simGetObjectSpecialProperty=(ptrSimGetObjectSpecialProperty)(_getProcAddress(lib,"simGetObjectSpecialProperty"));
886  simGetPositionOnPath=(ptrSimGetPositionOnPath)(_getProcAddress(lib,"simGetPositionOnPath"));
887  simGetDataOnPath=(ptrSimGetDataOnPath)(_getProcAddress(lib,"simGetDataOnPath"));
888  simGetOrientationOnPath=(ptrSimGetOrientationOnPath)(_getProcAddress(lib,"simGetOrientationOnPath"));
889  simGetClosestPositionOnPath=(ptrSimGetClosestPositionOnPath)(_getProcAddress(lib,"simGetClosestPositionOnPath"));
890  simReadForceSensor=(ptrSimReadForceSensor)(_getProcAddress(lib,"simReadForceSensor"));
891  simBreakForceSensor=(ptrSimBreakForceSensor)(_getProcAddress(lib,"simBreakForceSensor"));
892  simGetShapeVertex=(ptrSimGetShapeVertex)(_getProcAddress(lib,"simGetShapeVertex"));
893  simGetShapeTriangle=(ptrSimGetShapeTriangle)(_getProcAddress(lib,"simGetShapeTriangle"));
894  simSetLightParameters=(ptrSimSetLightParameters)(_getProcAddress(lib,"simSetLightParameters"));
895  simGetLightParameters=(ptrSimGetLightParameters)(_getProcAddress(lib,"simGetLightParameters"));
896  simHandleVarious=(ptrSimHandleVarious)(_getProcAddress(lib,"simHandleVarious"));
897  simGetVelocity=(ptrSimGetVelocity)(_getProcAddress(lib,"simGetVelocity"));
898  simGetObjectVelocity=(ptrSimGetObjectVelocity)(_getProcAddress(lib,"simGetObjectVelocity"));
899  simAddForceAndTorque=(ptrSimAddForceAndTorque)(_getProcAddress(lib,"simAddForceAndTorque"));
900  simAddForce=(ptrSimAddForce)(_getProcAddress(lib,"simAddForce"));
901  simSetExplicitHandling=(ptrSimSetExplicitHandling)(_getProcAddress(lib,"simSetExplicitHandling"));
902  simGetExplicitHandling=(ptrSimGetExplicitHandling)(_getProcAddress(lib,"simGetExplicitHandling"));
903  simGetLinkDummy=(ptrSimGetLinkDummy)(_getProcAddress(lib,"simGetLinkDummy"));
904  simSetLinkDummy=(ptrSimSetLinkDummy)(_getProcAddress(lib,"simSetLinkDummy"));
905  simSetModelProperty=(ptrSimSetModelProperty)(_getProcAddress(lib,"simSetModelProperty"));
906  simGetModelProperty=(ptrSimGetModelProperty)(_getProcAddress(lib,"simGetModelProperty"));
907  simSetShapeColor=(ptrSimSetShapeColor)(_getProcAddress(lib,"simSetShapeColor"));
908  simGetShapeColor=(ptrSimGetShapeColor)(_getProcAddress(lib,"simGetShapeColor"));
909  simResetDynamicObject=(ptrSimResetDynamicObject)(_getProcAddress(lib,"simResetDynamicObject"));
910  simSetJointMode=(ptrSimSetJointMode)(_getProcAddress(lib,"simSetJointMode"));
911  simGetJointMode=(ptrSimGetJointMode)(_getProcAddress(lib,"simGetJointMode"));
912  simSerialOpen=(ptrSimSerialOpen)(_getProcAddress(lib,"simSerialOpen"));
913  simSerialClose=(ptrSimSerialClose)(_getProcAddress(lib,"simSerialClose"));
914  simSerialSend=(ptrSimSerialSend)(_getProcAddress(lib,"simSerialSend"));
915  simSerialRead=(ptrSimSerialRead)(_getProcAddress(lib,"simSerialRead"));
916  simSerialCheck=(ptrSimSerialCheck)(_getProcAddress(lib,"simSerialCheck"));
917  simGetContactInfo=(ptrSimGetContactInfo)(_getProcAddress(lib,"simGetContactInfo"));
918  simSetThreadIsFree=(ptrSimSetThreadIsFree)(_getProcAddress(lib,"simSetThreadIsFree"));
919  simTubeOpen=(ptrSimTubeOpen)(_getProcAddress(lib,"simTubeOpen"));
920  simTubeClose=(ptrSimTubeClose)(_getProcAddress(lib,"simTubeClose"));
921  simTubeWrite=(ptrSimTubeWrite)(_getProcAddress(lib,"simTubeWrite"));
922  simTubeRead=(ptrSimTubeRead)(_getProcAddress(lib,"simTubeRead"));
923  simTubeStatus=(ptrSimTubeStatus)(_getProcAddress(lib,"simTubeStatus"));
924  simAuxiliaryConsoleOpen=(ptrSimAuxiliaryConsoleOpen)(_getProcAddress(lib,"simAuxiliaryConsoleOpen"));
925  simAuxiliaryConsoleClose=(ptrSimAuxiliaryConsoleClose)(_getProcAddress(lib,"simAuxiliaryConsoleClose"));
926  simAuxiliaryConsoleShow=(ptrSimAuxiliaryConsoleShow)(_getProcAddress(lib,"simAuxiliaryConsoleShow"));
927  simAuxiliaryConsolePrint=(ptrSimAuxiliaryConsolePrint)(_getProcAddress(lib,"simAuxiliaryConsolePrint"));
928  simImportShape=(ptrSimImportShape)(_getProcAddress(lib,"simImportShape"));
929  simImportMesh=(ptrSimImportMesh)(_getProcAddress(lib,"simImportMesh"));
930  simExportMesh=(ptrSimExportMesh)(_getProcAddress(lib,"simExportMesh"));
931  simCreateMeshShape=(ptrSimCreateMeshShape)(_getProcAddress(lib,"simCreateMeshShape"));
932  simCreatePureShape=(ptrSimCreatePureShape)(_getProcAddress(lib,"simCreatePureShape"));
933  simCreateHeightfieldShape=(ptrSimCreateHeightfieldShape)(_getProcAddress(lib,"simCreateHeightfieldShape"));
934  simGetShapeMesh=(ptrSimGetShapeMesh)(_getProcAddress(lib,"simGetShapeMesh"));
935  simAddBanner=(ptrSimAddBanner)(_getProcAddress(lib,"simAddBanner"));
936  simRemoveBanner=(ptrSimRemoveBanner)(_getProcAddress(lib,"simRemoveBanner"));
937  simCreateJoint=(ptrSimCreateJoint)(_getProcAddress(lib,"simCreateJoint"));
938  simCreateDummy=(ptrSimCreateDummy)(_getProcAddress(lib,"simCreateDummy"));
939  simCreateProximitySensor=(ptrSimCreateProximitySensor)(_getProcAddress(lib,"simCreateProximitySensor"));
940  simCreatePath=(ptrSimCreatePath)(_getProcAddress(lib,"simCreatePath"));
941  simInsertPathCtrlPoints=(ptrSimInsertPathCtrlPoints)(_getProcAddress(lib,"simInsertPathCtrlPoints"));
942  simCutPathCtrlPoints=(ptrSimCutPathCtrlPoints)(_getProcAddress(lib,"simCutPathCtrlPoints"));
943  simCreateForceSensor=(ptrSimCreateForceSensor)(_getProcAddress(lib,"simCreateForceSensor"));
944  simCreateVisionSensor=(ptrSimCreateVisionSensor)(_getProcAddress(lib,"simCreateVisionSensor"));
945  simRegisterContactCallback=(ptrSimRegisterContactCallback)(_getProcAddress(lib,"simRegisterContactCallback"));
946  simGetObjectIntParameter=(ptrSimGetObjectIntParameter)(_getProcAddress(lib,"simGetObjectIntParameter"));
947  simSetObjectIntParameter=(ptrSimSetObjectIntParameter)(_getProcAddress(lib,"simSetObjectIntParameter"));
948  simGetObjectInt32Parameter=(ptrSimGetObjectInt32Parameter)(_getProcAddress(lib,"simGetObjectInt32Parameter"));
949  simSetObjectInt32Parameter=(ptrSimSetObjectInt32Parameter)(_getProcAddress(lib,"simSetObjectInt32Parameter"));
950  simGetObjectFloatParameter=(ptrSimGetObjectFloatParameter)(_getProcAddress(lib,"simGetObjectFloatParameter"));
951  simSetObjectFloatParameter=(ptrSimSetObjectFloatParameter)(_getProcAddress(lib,"simSetObjectFloatParameter"));
952  simGetObjectStringParameter=(ptrSimGetObjectStringParameter)(_getProcAddress(lib,"simGetObjectStringParameter"));
953  simSetObjectStringParameter=(ptrSimSetObjectStringParameter)(_getProcAddress(lib,"simSetObjectStringParameter"));
955  simGetRotationAxis=(ptrSimGetRotationAxis)(_getProcAddress(lib,"simGetRotationAxis"));
956  simRotateAroundAxis=(ptrSimRotateAroundAxis)(_getProcAddress(lib,"simRotateAroundAxis"));
957  simGetJointForce=(ptrSimGetJointForce)(_getProcAddress(lib,"simGetJointForce"));
958  simSetArrayParameter=(ptrSimSetArrayParameter)(_getProcAddress(lib,"simSetArrayParameter"));
959  simGetArrayParameter=(ptrSimGetArrayParameter)(_getProcAddress(lib,"simGetArrayParameter"));
960  simSetIkGroupProperties=(ptrSimSetIkGroupProperties)(_getProcAddress(lib,"simSetIkGroupProperties"));
961  simSetIkElementProperties=(ptrSimSetIkElementProperties)(_getProcAddress(lib,"simSetIkElementProperties"));
962  simCameraFitToView=(ptrSimCameraFitToView)(_getProcAddress(lib,"simCameraFitToView"));
963  simPersistentDataWrite=(ptrSimPersistentDataWrite)(_getProcAddress(lib,"simPersistentDataWrite"));
964  simPersistentDataRead=(ptrSimPersistentDataRead)(_getProcAddress(lib,"simPersistentDataRead"));
965  simIsHandleValid=(ptrSimIsHandleValid)(_getProcAddress(lib,"simIsHandleValid"));
966  simHandleVisionSensor=(ptrSimHandleVisionSensor)(_getProcAddress(lib,"simHandleVisionSensor"));
967  simReadVisionSensor=(ptrSimReadVisionSensor)(_getProcAddress(lib,"simReadVisionSensor"));
968  simResetVisionSensor=(ptrSimResetVisionSensor)(_getProcAddress(lib,"simResetVisionSensor"));
969  simCheckVisionSensor=(ptrSimCheckVisionSensor)(_getProcAddress(lib,"simCheckVisionSensor"));
970  simCheckVisionSensorEx=(ptrSimCheckVisionSensorEx)(_getProcAddress(lib,"simCheckVisionSensorEx"));
972  simGetVisionSensorImage=(ptrSimGetVisionSensorImage)(_getProcAddress(lib,"simGetVisionSensorImage"));
973  simGetVisionSensorCharImage=(ptrSimGetVisionSensorCharImage)(_getProcAddress(lib,"simGetVisionSensorCharImage"));
974  simSetVisionSensorImage=(ptrSimSetVisionSensorImage)(_getProcAddress(lib,"simSetVisionSensorImage"));
975  simSetVisionSensorCharImage=(ptrSimSetVisionSensorCharImage)(_getProcAddress(lib,"simSetVisionSensorCharImage"));
977  simCreateUI=(ptrSimCreateUI)(_getProcAddress(lib,"simCreateUI"));
978  simCreateUIButton=(ptrSimCreateUIButton)(_getProcAddress(lib,"simCreateUIButton"));
979  simGetUIHandle=(ptrSimGetUIHandle)(_getProcAddress(lib,"simGetUIHandle"));
980  simGetUIProperty=(ptrSimGetUIProperty)(_getProcAddress(lib,"simGetUIProperty"));
981  simGetUIEventButton=(ptrSimGetUIEventButton)(_getProcAddress(lib,"simGetUIEventButton"));
982  simSetUIProperty=(ptrSimSetUIProperty)(_getProcAddress(lib,"simSetUIProperty"));
983  simGetUIButtonProperty=(ptrSimGetUIButtonProperty)(_getProcAddress(lib,"simGetUIButtonProperty"));
984  simSetUIButtonProperty=(ptrSimSetUIButtonProperty)(_getProcAddress(lib,"simSetUIButtonProperty"));
985  simGetUIButtonSize=(ptrSimGetUIButtonSize)(_getProcAddress(lib,"simGetUIButtonSize"));
986  simSetUIButtonLabel=(ptrSimSetUIButtonLabel)(_getProcAddress(lib,"simSetUIButtonLabel"));
987  simGetUIButtonLabel=(ptrSimGetUIButtonLabel)(_getProcAddress(lib,"simGetUIButtonLabel"));
988  simSetUISlider=(ptrSimSetUISlider)(_getProcAddress(lib,"simSetUISlider"));
989  simGetUISlider=(ptrSimGetUISlider)(_getProcAddress(lib,"simGetUISlider"));
990  simSetUIButtonColor=(ptrSimSetUIButtonColor)(_getProcAddress(lib,"simSetUIButtonColor"));
991  simSetUIButtonTexture=(ptrSimSetUIButtonTexture)(_getProcAddress(lib,"simSetUIButtonTexture"));
992  simCreateUIButtonArray=(ptrSimCreateUIButtonArray)(_getProcAddress(lib,"simCreateUIButtonArray"));
993  simSetUIButtonArrayColor=(ptrSimSetUIButtonArrayColor)(_getProcAddress(lib,"simSetUIButtonArrayColor"));
994  simDeleteUIButtonArray=(ptrSimDeleteUIButtonArray)(_getProcAddress(lib,"simDeleteUIButtonArray"));
995  simRemoveUI=(ptrSimRemoveUI)(_getProcAddress(lib,"simRemoveUI"));
996  simSetUIPosition=(ptrSimSetUIPosition)(_getProcAddress(lib,"simSetUIPosition"));
997  simGetUIPosition=(ptrSimGetUIPosition)(_getProcAddress(lib,"simGetUIPosition"));
998  simGetObjectQuaternion=(ptrSimGetObjectQuaternion)(_getProcAddress(lib,"simGetObjectQuaternion"));
999  simSetObjectQuaternion=(ptrSimSetObjectQuaternion)(_getProcAddress(lib,"simSetObjectQuaternion"));
1000  simRMLPosition=(ptrSimRMLPosition)(_getProcAddress(lib,"simRMLPosition"));
1001  simRMLVelocity=(ptrSimRMLVelocity)(_getProcAddress(lib,"simRMLVelocity"));
1002  simRMLPos=(ptrSimRMLPos)(_getProcAddress(lib,"simRMLPos"));
1003  simRMLVel=(ptrSimRMLVel)(_getProcAddress(lib,"simRMLVel"));
1004  simRMLStep=(ptrSimRMLStep)(_getProcAddress(lib,"simRMLStep"));
1005  simRMLRemove=(ptrSimRMLRemove)(_getProcAddress(lib,"simRMLRemove"));
1006  simBuildMatrixQ=(ptrSimBuildMatrixQ)(_getProcAddress(lib,"simBuildMatrixQ"));
1007  simGetQuaternionFromMatrix=(ptrSimGetQuaternionFromMatrix)(_getProcAddress(lib,"simGetQuaternionFromMatrix"));
1008  simFileDialog=(ptrSimFileDialog)(_getProcAddress(lib,"simFileDialog"));
1009  simMsgBox=(ptrSimMsgBox)(_getProcAddress(lib,"simMsgBox"));
1010  simSetShapeMassAndInertia=(ptrSimSetShapeMassAndInertia)(_getProcAddress(lib,"simSetShapeMassAndInertia"));
1011  simGetShapeMassAndInertia=(ptrSimGetShapeMassAndInertia)(_getProcAddress(lib,"simGetShapeMassAndInertia"));
1012  simGroupShapes=(ptrSimGroupShapes)(_getProcAddress(lib,"simGroupShapes"));
1013  simUngroupShape=(ptrSimUngroupShape)(_getProcAddress(lib,"simUngroupShape"));
1014  simConvexDecompose=(ptrSimConvexDecompose)(_getProcAddress(lib,"simConvexDecompose"));
1015  simGetIkGroupMatrix=(ptrSimGetIkGroupMatrix)(_getProcAddress(lib,"simGetIkGroupMatrix"));
1016  simAddGhost=(ptrSimAddGhost)(_getProcAddress(lib,"simAddGhost"));
1017  simModifyGhost=(ptrSimModifyGhost)(_getProcAddress(lib,"simModifyGhost"));
1018  simQuitSimulator=(ptrSimQuitSimulator)(_getProcAddress(lib,"simQuitSimulator"));
1019  simGetThreadId=(ptrSimGetThreadId)(_getProcAddress(lib,"simGetThreadId"));
1020  simLockResources=(ptrSimLockResources)(_getProcAddress(lib,"simLockResources"));
1021  simUnlockResources=(ptrSimUnlockResources)(_getProcAddress(lib,"simUnlockResources"));
1022  simEnableEventCallback=(ptrSimEnableEventCallback)(_getProcAddress(lib,"simEnableEventCallback"));
1023  simGetMaterialId=(ptrSimGetMaterialId)(_getProcAddress(lib,"simGetMaterialId"));
1024  simSetShapeMaterial=(ptrSimSetShapeMaterial)(_getProcAddress(lib,"simSetShapeMaterial"));
1025  simGetShapeMaterial=(ptrSimGetShapeMaterial)(_getProcAddress(lib,"simGetShapeMaterial"));
1026  simGetTextureId=(ptrSimGetTextureId)(_getProcAddress(lib,"simGetTextureId"));
1027  simReadTexture=(ptrSimReadTexture)(_getProcAddress(lib,"simReadTexture"));
1028  simWriteTexture=(ptrSimWriteTexture)(_getProcAddress(lib,"simWriteTexture"));
1029  simCreateTexture=(ptrSimCreateTexture)(_getProcAddress(lib,"simCreateTexture"));
1030  simWriteCustomDataBlock=(ptrSimWriteCustomDataBlock)(_getProcAddress(lib,"simWriteCustomDataBlock"));
1031  simReadCustomDataBlock=(ptrSimReadCustomDataBlock)(_getProcAddress(lib,"simReadCustomDataBlock"));
1032  simAddPointCloud=(ptrSimAddPointCloud)(_getProcAddress(lib,"simAddPointCloud"));
1033  simModifyPointCloud=(ptrSimModifyPointCloud)(_getProcAddress(lib,"simModifyPointCloud"));
1034  simGetShapeGeomInfo=(ptrSimGetShapeGeomInfo)(_getProcAddress(lib,"simGetShapeGeomInfo"));
1035  simGetObjectsInTree=(ptrSimGetObjectsInTree)(_getProcAddress(lib,"simGetObjectsInTree"));
1036  simSetObjectSizeValues=(ptrSimSetObjectSizeValues)(_getProcAddress(lib,"simSetObjectSizeValues"));
1037  simGetObjectSizeValues=(ptrSimGetObjectSizeValues)(_getProcAddress(lib,"simGetObjectSizeValues"));
1038  simScaleObject=(ptrSimScaleObject)(_getProcAddress(lib,"simScaleObject"));
1039  simSetShapeTexture=(ptrSimSetShapeTexture)(_getProcAddress(lib,"simSetShapeTexture"));
1040  simGetShapeTextureId=(ptrSimGetShapeTextureId)(_getProcAddress(lib,"simGetShapeTextureId"));
1041  simGetCollectionObjects=(ptrSimGetCollectionObjects)(_getProcAddress(lib,"simGetCollectionObjects"));
1042  simHandleCustomizationScripts=(ptrSimHandleCustomizationScripts)(_getProcAddress(lib,"simHandleCustomizationScripts"));
1043  simSetScriptAttribute=(ptrSimSetScriptAttribute)(_getProcAddress(lib,"simSetScriptAttribute"));
1044  simGetScriptAttribute=(ptrSimGetScriptAttribute)(_getProcAddress(lib,"simGetScriptAttribute"));
1045  simReorientShapeBoundingBox=(ptrSimReorientShapeBoundingBox)(_getProcAddress(lib,"simReorientShapeBoundingBox"));
1046  simSwitchThread=(ptrSimSwitchThread)(_getProcAddress(lib,"simSwitchThread"));
1047  simCreateIkGroup=(ptrSimCreateIkGroup)(_getProcAddress(lib,"simCreateIkGroup"));
1048  simRemoveIkGroup=(ptrSimRemoveIkGroup)(_getProcAddress(lib,"simRemoveIkGroup"));
1049  simCreateIkElement=(ptrSimCreateIkElement)(_getProcAddress(lib,"simCreateIkElement"));
1050  simCreateCollection=(ptrSimCreateCollection)(_getProcAddress(lib,"simCreateCollection"));
1051  simAddObjectToCollection=(ptrSimAddObjectToCollection)(_getProcAddress(lib,"simAddObjectToCollection"));
1052  simSaveImage=(ptrSimSaveImage)(_getProcAddress(lib,"simSaveImage"));
1053  simLoadImage=(ptrSimLoadImage)(_getProcAddress(lib,"simLoadImage"));
1054  simGetScaledImage=(ptrSimGetScaledImage)(_getProcAddress(lib,"simGetScaledImage"));
1055  simTransformImage=(ptrSimTransformImage)(_getProcAddress(lib,"simTransformImage"));
1056  simGetQHull=(ptrSimGetQHull)(_getProcAddress(lib,"simGetQHull"));
1057  simGetDecimatedMesh=(ptrSimGetDecimatedMesh)(_getProcAddress(lib,"simGetDecimatedMesh"));
1058  simExportIk=(ptrSimExportIk)(_getProcAddress(lib,"simExportIk"));
1059  simCallScriptFunction=(ptrSimCallScriptFunction)(_getProcAddress(lib,"simCallScriptFunction"));
1060  simCallScriptFunctionEx=(ptrSimCallScriptFunctionEx)(_getProcAddress(lib,"simCallScriptFunctionEx"));
1061  simComputeJacobian=(ptrSimComputeJacobian)(_getProcAddress(lib,"simComputeJacobian"));
1062  simGetConfigForTipPose=(ptrSimGetConfigForTipPose)(_getProcAddress(lib,"simGetConfigForTipPose"));
1063  simGenerateIkPath=(ptrSimGenerateIkPath)(_getProcAddress(lib,"simGenerateIkPath"));
1064  simGetExtensionString=(ptrSimGetExtensionString)(_getProcAddress(lib,"simGetExtensionString"));
1065  simComputeMassAndInertia=(ptrSimComputeMassAndInertia)(_getProcAddress(lib,"simComputeMassAndInertia"));
1066  simCreateStack=(ptrSimCreateStack)(_getProcAddress(lib,"simCreateStack"));
1067  simReleaseStack=(ptrSimReleaseStack)(_getProcAddress(lib,"simReleaseStack"));
1068  simCopyStack=(ptrSimCopyStack)(_getProcAddress(lib,"simCopyStack"));
1069  simPushNullOntoStack=(ptrSimPushNullOntoStack)(_getProcAddress(lib,"simPushNullOntoStack"));
1070  simPushBoolOntoStack=(ptrSimPushBoolOntoStack)(_getProcAddress(lib,"simPushBoolOntoStack"));
1071  simPushInt32OntoStack=(ptrSimPushInt32OntoStack)(_getProcAddress(lib,"simPushInt32OntoStack"));
1072  simPushFloatOntoStack=(ptrSimPushFloatOntoStack)(_getProcAddress(lib,"simPushFloatOntoStack"));
1073  simPushDoubleOntoStack=(ptrSimPushDoubleOntoStack)(_getProcAddress(lib,"simPushDoubleOntoStack"));
1074  simPushStringOntoStack=(ptrSimPushStringOntoStack)(_getProcAddress(lib,"simPushStringOntoStack"));
1075  simPushUInt8TableOntoStack=(ptrSimPushUInt8TableOntoStack)(_getProcAddress(lib,"simPushUInt8TableOntoStack"));
1076  simPushInt32TableOntoStack=(ptrSimPushInt32TableOntoStack)(_getProcAddress(lib,"simPushInt32TableOntoStack"));
1077  simPushFloatTableOntoStack=(ptrSimPushFloatTableOntoStack)(_getProcAddress(lib,"simPushFloatTableOntoStack"));
1078  simPushDoubleTableOntoStack=(ptrSimPushDoubleTableOntoStack)(_getProcAddress(lib,"simPushDoubleTableOntoStack"));
1079  simPushTableOntoStack=(ptrSimPushTableOntoStack)(_getProcAddress(lib,"simPushTableOntoStack"));
1080  simInsertDataIntoStackTable=(ptrSimInsertDataIntoStackTable)(_getProcAddress(lib,"simInsertDataIntoStackTable"));
1081  simGetStackSize=(ptrSimGetStackSize)(_getProcAddress(lib,"simGetStackSize"));
1082  simPopStackItem=(ptrSimPopStackItem)(_getProcAddress(lib,"simPopStackItem"));
1083  simMoveStackItemToTop=(ptrSimMoveStackItemToTop)(_getProcAddress(lib,"simMoveStackItemToTop"));
1084  simIsStackValueNull=(ptrSimIsStackValueNull)(_getProcAddress(lib,"simIsStackValueNull"));
1085  simGetStackBoolValue=(ptrSimGetStackBoolValue)(_getProcAddress(lib,"simGetStackBoolValue"));
1086  simGetStackInt32Value=(ptrSimGetStackInt32Value)(_getProcAddress(lib,"simGetStackInt32Value"));
1087  simGetStackFloatValue=(ptrSimGetStackFloatValue)(_getProcAddress(lib,"simGetStackFloatValue"));
1088  simGetStackDoubleValue=(ptrSimGetStackDoubleValue)(_getProcAddress(lib,"simGetStackDoubleValue"));
1089  simGetStackStringValue=(ptrSimGetStackStringValue)(_getProcAddress(lib,"simGetStackStringValue"));
1090  simGetStackTableInfo=(ptrSimGetStackTableInfo)(_getProcAddress(lib,"simGetStackTableInfo"));
1091  simGetStackUInt8Table=(ptrSimGetStackUInt8Table)(_getProcAddress(lib,"simGetStackUInt8Table"));
1092  simGetStackInt32Table=(ptrSimGetStackInt32Table)(_getProcAddress(lib,"simGetStackInt32Table"));
1093  simGetStackFloatTable=(ptrSimGetStackFloatTable)(_getProcAddress(lib,"simGetStackFloatTable"));
1094  simGetStackDoubleTable=(ptrSimGetStackDoubleTable)(_getProcAddress(lib,"simGetStackDoubleTable"));
1095  simUnfoldStackTable=(ptrSimUnfoldStackTable)(_getProcAddress(lib,"simUnfoldStackTable"));
1096  simDebugStack=(ptrSimDebugStack)(_getProcAddress(lib,"simDebugStack"));
1097  simSetScriptVariable=(ptrSimSetScriptVariable)(_getProcAddress(lib,"simSetScriptVariable"));
1098  simGetEngineFloatParameter=(ptrSimGetEngineFloatParameter)(_getProcAddress(lib,"simGetEngineFloatParameter"));
1099  simGetEngineInt32Parameter=(ptrSimGetEngineInt32Parameter)(_getProcAddress(lib,"simGetEngineInt32Parameter"));
1100  simGetEngineBoolParameter=(ptrSimGetEngineBoolParameter)(_getProcAddress(lib,"simGetEngineBoolParameter"));
1101  simSetEngineFloatParameter=(ptrSimSetEngineFloatParameter)(_getProcAddress(lib,"simSetEngineFloatParameter"));
1102  simSetEngineInt32Parameter=(ptrSimSetEngineInt32Parameter)(_getProcAddress(lib,"simSetEngineInt32Parameter"));
1103  simSetEngineBoolParameter=(ptrSimSetEngineBoolParameter)(_getProcAddress(lib,"simSetEngineBoolParameter"));
1104  simCreateOctree=(ptrSimCreateOctree)(_getProcAddress(lib,"simCreateOctree"));
1105  simCreatePointCloud=(ptrSimCreatePointCloud)(_getProcAddress(lib,"simCreatePointCloud"));
1106  simSetPointCloudOptions=(ptrSimSetPointCloudOptions)(_getProcAddress(lib,"simSetPointCloudOptions"));
1107  simGetPointCloudOptions=(ptrSimGetPointCloudOptions)(_getProcAddress(lib,"simGetPointCloudOptions"));
1108  simInsertVoxelsIntoOctree=(ptrSimInsertVoxelsIntoOctree)(_getProcAddress(lib,"simInsertVoxelsIntoOctree"));
1109  simRemoveVoxelsFromOctree=(ptrSimRemoveVoxelsFromOctree)(_getProcAddress(lib,"simRemoveVoxelsFromOctree"));
1110  simInsertPointsIntoPointCloud=(ptrSimInsertPointsIntoPointCloud)(_getProcAddress(lib,"simInsertPointsIntoPointCloud"));
1111  simRemovePointsFromPointCloud=(ptrSimRemovePointsFromPointCloud)(_getProcAddress(lib,"simRemovePointsFromPointCloud"));
1113  simGetOctreeVoxels=(ptrSimGetOctreeVoxels)(_getProcAddress(lib,"simGetOctreeVoxels"));
1114  simGetPointCloudPoints=(ptrSimGetPointCloudPoints)(_getProcAddress(lib,"simGetPointCloudPoints"));
1115  simInsertObjectIntoOctree=(ptrSimInsertObjectIntoOctree)(_getProcAddress(lib,"simInsertObjectIntoOctree"));
1116  simSubtractObjectFromOctree=(ptrSimSubtractObjectFromOctree)(_getProcAddress(lib,"simSubtractObjectFromOctree"));
1117  simInsertObjectIntoPointCloud=(ptrSimInsertObjectIntoPointCloud)(_getProcAddress(lib,"simInsertObjectIntoPointCloud"));
1119  simCheckOctreePointOccupancy=(ptrSimCheckOctreePointOccupancy)(_getProcAddress(lib,"simCheckOctreePointOccupancy"));
1120  simOpenTextEditor=(ptrSimOpenTextEditor)(_getProcAddress(lib,"simOpenTextEditor"));
1121  simPackTable=(ptrSimPackTable)(_getProcAddress(lib,"simPackTable"));
1122  simUnpackTable=(ptrSimUnpackTable)(_getProcAddress(lib,"simUnpackTable"));
1123 
1124 
1125  _simGetContactCallbackCount=(ptr_simGetContactCallbackCount)(_getProcAddress(lib,"_simGetContactCallbackCount"));
1126  _simGetContactCallback=(ptr_simGetContactCallback)(_getProcAddress(lib,"_simGetContactCallback"));
1129  _simGetObjectListSize=(ptr_simGetObjectListSize)(_getProcAddress(lib,"_simGetObjectListSize"));
1130  _simGetObjectFromIndex=(ptr_simGetObjectFromIndex)(_getProcAddress(lib,"_simGetObjectFromIndex"));
1131  _simGetObjectID=(ptr_simGetObjectID)(_getProcAddress(lib,"_simGetObjectID"));
1132  _simGetObjectType=(ptr_simGetObjectType)(_getProcAddress(lib,"_simGetObjectType"));
1133  _simGetObjectChildren=(ptr_simGetObjectChildren)(_getProcAddress(lib,"_simGetObjectChildren"));
1134  _simGetGeomProxyFromShape=(ptr_simGetGeomProxyFromShape)(_getProcAddress(lib,"_simGetGeomProxyFromShape"));
1135  _simGetParentObject=(ptr_simGetParentObject)(_getProcAddress(lib,"_simGetParentObject"));
1136  _simGetObject=(ptr_simGetObject)(_getProcAddress(lib,"_simGetObject"));
1137  _simGetIkGroupObject=(ptr_simGetIkGroupObject)(_getProcAddress(lib,"_simGetIkGroupObject"));
1138  _simMpHandleIkGroupObject=(ptr_simMpHandleIkGroupObject)(_getProcAddress(lib,"_simMpHandleIkGroupObject"));
1143  _simIsShapeDynamicallyStatic=(ptr_simIsShapeDynamicallyStatic)(_getProcAddress(lib,"_simIsShapeDynamicallyStatic"));
1144  _simGetTreeDynamicProperty=(ptr_simGetTreeDynamicProperty)(_getProcAddress(lib,"_simGetTreeDynamicProperty"));
1145  _simGetDummyLinkType=(ptr_simGetDummyLinkType)(_getProcAddress(lib,"_simGetDummyLinkType"));
1146  _simGetJointMode=(ptr_simGetJointMode)(_getProcAddress(lib,"_simGetJointMode"));
1147  _simIsJointInHybridOperation=(ptr_simIsJointInHybridOperation)(_getProcAddress(lib,"_simIsJointInHybridOperation"));
1150  _simGetDynamicCollisionMask=(ptr_simGetDynamicCollisionMask)(_getProcAddress(lib,"_simGetDynamicCollisionMask"));
1154  _simSetJointPosition=(ptr_simSetJointPosition)(_getProcAddress(lib,"_simSetJointPosition"));
1155  _simGetJointPosition=(ptr_simGetJointPosition)(_getProcAddress(lib,"_simGetJointPosition"));
1157  _simGetInitialDynamicVelocity=(ptr_simGetInitialDynamicVelocity)(_getProcAddress(lib,"_simGetInitialDynamicVelocity"));
1158  _simSetInitialDynamicVelocity=(ptr_simSetInitialDynamicVelocity)(_getProcAddress(lib,"_simSetInitialDynamicVelocity"));
1161  _simGetStartSleeping=(ptr_simGetStartSleeping)(_getProcAddress(lib,"_simGetStartSleeping"));
1162  _simGetWasPutToSleepOnce=(ptr_simGetWasPutToSleepOnce)(_getProcAddress(lib,"_simGetWasPutToSleepOnce"));
1163  _simGetDynamicsFullRefreshFlag=(ptr_simGetDynamicsFullRefreshFlag)(_getProcAddress(lib,"_simGetDynamicsFullRefreshFlag"));
1164  _simSetDynamicsFullRefreshFlag=(ptr_simSetDynamicsFullRefreshFlag)(_getProcAddress(lib,"_simSetDynamicsFullRefreshFlag"));
1167  _simGetParentFollowsDynamic=(ptr_simGetParentFollowsDynamic)(_getProcAddress(lib,"_simGetParentFollowsDynamic"));
1168  _simSetShapeDynamicVelocity=(ptr_simSetShapeDynamicVelocity)(_getProcAddress(lib,"_simSetShapeDynamicVelocity"));
1171  _simGetJointPositionInterval=(ptr_simGetJointPositionInterval)(_getProcAddress(lib,"_simGetJointPositionInterval"));
1172  _simGetJointType=(ptr_simGetJointType)(_getProcAddress(lib,"_simGetJointType"));
1173  _simIsForceSensorBroken=(ptr_simIsForceSensorBroken)(_getProcAddress(lib,"_simIsForceSensorBroken"));
1175  _simIsDynamicMotorEnabled=(ptr_simIsDynamicMotorEnabled)(_getProcAddress(lib,"_simIsDynamicMotorEnabled"));
1178  _simGetMotorPid=(ptr_simGetMotorPid)(_getProcAddress(lib,"_simGetMotorPid"));
1181  _simGetDynamicMotorMaxForce=(ptr_simGetDynamicMotorMaxForce)(_getProcAddress(lib,"_simGetDynamicMotorMaxForce"));
1191  _simGetGeomWrapFromGeomProxy=(ptr_simGetGeomWrapFromGeomProxy)(_getProcAddress(lib,"_simGetGeomWrapFromGeomProxy"));
1192  _simGetLocalInertiaFrame=(ptr_simGetLocalInertiaFrame)(_getProcAddress(lib,"_simGetLocalInertiaFrame"));
1193  _simGetPurePrimitiveType=(ptr_simGetPurePrimitiveType)(_getProcAddress(lib,"_simGetPurePrimitiveType"));
1194  _simIsGeomWrapGeometric=(ptr_simIsGeomWrapGeometric)(_getProcAddress(lib,"_simIsGeomWrapGeometric"));
1195  _simIsGeomWrapConvex=(ptr_simIsGeomWrapConvex)(_getProcAddress(lib,"_simIsGeomWrapConvex"));
1196  _simGetGeometricCount=(ptr_simGetGeometricCount)(_getProcAddress(lib,"_simGetGeometricCount"));
1197  _simGetAllGeometrics=(ptr_simGetAllGeometrics)(_getProcAddress(lib,"_simGetAllGeometrics"));
1198  _simGetPurePrimitiveSizes=(ptr_simGetPurePrimitiveSizes)(_getProcAddress(lib,"_simGetPurePrimitiveSizes"));
1199  _simMakeDynamicAnnouncement=(ptr_simMakeDynamicAnnouncement)(_getProcAddress(lib,"_simMakeDynamicAnnouncement"));
1200  _simGetVerticesLocalFrame=(ptr_simGetVerticesLocalFrame)(_getProcAddress(lib,"_simGetVerticesLocalFrame"));
1201  _simGetHeightfieldData=(ptr_simGetHeightfieldData)(_getProcAddress(lib,"_simGetHeightfieldData"));
1202  _simGetCumulativeMeshes=(ptr_simGetCumulativeMeshes)(_getProcAddress(lib,"_simGetCumulativeMeshes"));
1203  _simGetMass=(ptr_simGetMass)(_getProcAddress(lib,"_simGetMass"));
1205  _simGetGravity=(ptr_simGetGravity)(_getProcAddress(lib,"_simGetGravity"));
1206  _simGetTimeDiffInMs=(ptr_simGetTimeDiffInMs)(_getProcAddress(lib,"_simGetTimeDiffInMs"));
1207  _simDoEntitiesCollide=(ptr_simDoEntitiesCollide)(_getProcAddress(lib,"_simDoEntitiesCollide"));
1209  _simHandleJointControl=(ptr_simHandleJointControl)(_getProcAddress(lib,"_simHandleJointControl"));
1210  _simHandleCustomContact=(ptr_simHandleCustomContact)(_getProcAddress(lib,"_simHandleCustomContact"));
1211  _simGetPureHollowScaling=(ptr_simGetPureHollowScaling)(_getProcAddress(lib,"_simGetPureHollowScaling"));
1212  _simGetJointCallbackCallOrder=(ptr_simGetJointCallbackCallOrder)(_getProcAddress(lib,"_simGetJointCallbackCallOrder"));
1213 
1214 
1215  // Deprecated begin
1216  simSerialPortOpen=(ptrSimSerialPortOpen)(_getProcAddress(lib,"simSerialPortOpen"));
1217  simSerialPortClose=(ptrSimSerialPortClose)(_getProcAddress(lib,"simSerialPortClose"));
1218  simSerialPortSend=(ptrSimSerialPortSend)(_getProcAddress(lib,"simSerialPortSend"));
1219  simSerialPortRead=(ptrSimSerialPortRead)(_getProcAddress(lib,"simSerialPortRead"));
1220  simJointGetForce=(ptrSimJointGetForce)(_getProcAddress(lib,"simJointGetForce"));
1221  simGetPathPlanningHandle=(ptrSimGetPathPlanningHandle)(_getProcAddress(lib,"simGetPathPlanningHandle"));
1222  simGetMotionPlanningHandle=(ptrSimGetMotionPlanningHandle)(_getProcAddress(lib,"simGetMotionPlanningHandle"));
1223  simGetMpConfigForTipPose=(ptrSimGetMpConfigForTipPose)(_getProcAddress(lib,"simGetMpConfigForTipPose"));
1224  simFindMpPath=(ptrSimFindMpPath)(_getProcAddress(lib,"simFindMpPath"));
1225  simSimplifyMpPath=(ptrSimSimplifyMpPath)(_getProcAddress(lib,"simSimplifyMpPath"));
1226  simGetMpConfigTransition=(ptrSimGetMpConfigTransition)(_getProcAddress(lib,"simGetMpConfigTransition"));
1227  simFindIkPath=(ptrSimFindIkPath)(_getProcAddress(lib,"simFindIkPath"));
1228  simCreateMotionPlanning=(ptrSimCreateMotionPlanning)(_getProcAddress(lib,"simCreateMotionPlanning"));
1229  simRemoveMotionPlanning=(ptrSimRemoveMotionPlanning)(_getProcAddress(lib,"simRemoveMotionPlanning"));
1230  simSearchPath=(ptrSimSearchPath)(_getProcAddress(lib,"simSearchPath"));
1231  simInitializePathSearch=(ptrSimInitializePathSearch)(_getProcAddress(lib,"simInitializePathSearch"));
1232  simPerformPathSearchStep=(ptrSimPerformPathSearchStep)(_getProcAddress(lib,"simPerformPathSearchStep"));
1233  simLockInterface=(ptrSimLockInterface)(_getProcAddress(lib,"simLockInterface"));
1234  simCopyPasteSelectedObjects=(ptrSimCopyPasteSelectedObjects)(_getProcAddress(lib,"simCopyPasteSelectedObjects"));
1235  simResetPath=(ptrSimResetPath)(_getProcAddress(lib,"simResetPath"));
1236  simHandlePath=(ptrSimHandlePath)(_getProcAddress(lib,"simHandlePath"));
1237  simResetJoint=(ptrSimResetJoint)(_getProcAddress(lib,"simResetJoint"));
1238  simHandleJoint=(ptrSimHandleJoint)(_getProcAddress(lib,"simHandleJoint"));
1239  simAppendScriptArrayEntry=(ptrSimAppendScriptArrayEntry)(_getProcAddress(lib,"simAppendScriptArrayEntry"));
1240  simClearScriptVariable=(ptrSimClearScriptVariable)(_getProcAddress(lib,"simClearScriptVariable"));
1241  _simGetJointOdeParameters=(ptr_simGetJointOdeParameters)(_getProcAddress(lib,"_simGetJointOdeParameters"));
1242  _simGetJointBulletParameters=(ptr_simGetJointBulletParameters)(_getProcAddress(lib,"_simGetJointBulletParameters"));
1244  _simGetBulletCollisionMargin=(ptr_simGetBulletCollisionMargin)(_getProcAddress(lib,"_simGetBulletCollisionMargin"));
1245  _simGetBulletStickyContact=(ptr_simGetBulletStickyContact)(_getProcAddress(lib,"_simGetBulletStickyContact"));
1246  _simGetBulletRestitution=(ptr_simGetBulletRestitution)(_getProcAddress(lib,"_simGetBulletRestitution"));
1247  _simGetVortexParameters=(ptr_simGetVortexParameters)(_getProcAddress(lib,"_simGetVortexParameters"));
1248  _simGetNewtonParameters=(ptr_simGetNewtonParameters)(_getProcAddress(lib,"_simGetNewtonParameters"));
1249  _simGetDamping=(ptr_simGetDamping)(_getProcAddress(lib,"_simGetDamping"));
1250  _simGetFriction=(ptr_simGetFriction)(_getProcAddress(lib,"_simGetFriction"));
1251  // Deprecated end
1252 
1253 
1254  char couldNotFind[]="Could not find function";
1255  if (simRunSimulator==0)
1256  {
1257  printf("%s simRunSimulator\n",couldNotFind);
1258  return 0;
1259  }
1260  if (simGetSimulatorMessage==0)
1261  {
1262  printf("%s simGetSimulatorMessage\n",couldNotFind);
1263  return 0;
1264  }
1265  if (simGetMainWindow==0)
1266  {
1267  printf("%s simGetMainWindow\n",couldNotFind);
1268  return 0;
1269  }
1270  if (simGetLastError==0)
1271  {
1272  printf("%s simGetLastError\n",couldNotFind);
1273  return 0;
1274  }
1275  if (simLoadModule==0)
1276  {
1277  printf("%s simLoadModule\n",couldNotFind);
1278  return 0;
1279  }
1280  if (simUnloadModule==0)
1281  {
1282  printf("%s simUnloadModule\n",couldNotFind);
1283  return 0;
1284  }
1285  if (simSendModuleMessage==0)
1286  {
1287  printf("%s simSendModuleMessage\n",couldNotFind);
1288  return 0;
1289  }
1290  if (simSetBooleanParameter==0)
1291  {
1292  printf("%s simSetBooleanParameter\n",couldNotFind);
1293  return 0;
1294  }
1295  if (simGetBooleanParameter==0)
1296  {
1297  printf("%s simGetBooleanParameter\n",couldNotFind);
1298  return 0;
1299  }
1300  if (simSetBoolParameter==0)
1301  {
1302  printf("%s simSetBoolParameter\n",couldNotFind);
1303  return 0;
1304  }
1305  if (simGetBoolParameter==0)
1306  {
1307  printf("%s simGetBoolParameter\n",couldNotFind);
1308  return 0;
1309  }
1310  if (simSetIntegerParameter==0)
1311  {
1312  printf("%s simSetIntegerParameter\n",couldNotFind);
1313  return 0;
1314  }
1315  if (simGetIntegerParameter==0)
1316  {
1317  printf("%s simGetIntegerParameter\n",couldNotFind);
1318  return 0;
1319  }
1320  if (simSetInt32Parameter==0)
1321  {
1322  printf("%s simSetInt32Parameter\n",couldNotFind);
1323  return 0;
1324  }
1325  if (simGetInt32Parameter==0)
1326  {
1327  printf("%s simGetInt32Parameter\n",couldNotFind);
1328  return 0;
1329  }
1330  if (simGetUInt64Parameter==0)
1331  {
1332  printf("%s simGetUInt64Parameter\n",couldNotFind);
1333  return 0;
1334  }
1335  if (simSetFloatingParameter==0)
1336  {
1337  printf("%s simSetFloatingParameter\n",couldNotFind);
1338  return 0;
1339  }
1340  if (simGetFloatingParameter==0)
1341  {
1342  printf("%s simGetFloatingParameter\n",couldNotFind);
1343  return 0;
1344  }
1345  if (simSetFloatParameter==0)
1346  {
1347  printf("%s simSetFloatParameter\n",couldNotFind);
1348  return 0;
1349  }
1350  if (simGetFloatParameter==0)
1351  {
1352  printf("%s simGetFloatParameter\n",couldNotFind);
1353  return 0;
1354  }
1355  if (simSetStringParameter==0)
1356  {
1357  printf("%s simSetStringParameter\n",couldNotFind);
1358  return 0;
1359  }
1360  if (simGetStringParameter==0)
1361  {
1362  printf("%s simGetStringParameter\n",couldNotFind);
1363  return 0;
1364  }
1365  if (simGetObjectHandle==0)
1366  {
1367  printf("%s simGetObjectHandle\n",couldNotFind);
1368  return 0;
1369  }
1370  if (simRemoveObject==0)
1371  {
1372  printf("%s simRemoveObject\n",couldNotFind);
1373  return 0;
1374  }
1375  if (simRemoveModel==0)
1376  {
1377  printf("%s simRemoveModel\n",couldNotFind);
1378  return 0;
1379  }
1380  if (simGetObjectName==0)
1381  {
1382  printf("%s simGetObjectName\n",couldNotFind);
1383  return 0;
1384  }
1385  if (simGetObjects==0)
1386  {
1387  printf("%s simGetObjects\n",couldNotFind);
1388  return 0;
1389  }
1390  if (simSetObjectName==0)
1391  {
1392  printf("%s simSetObjectName\n",couldNotFind);
1393  return 0;
1394  }
1395  if (simGetCollectionHandle==0)
1396  {
1397  printf("%s simGetCollectionHandle\n",couldNotFind);
1398  return 0;
1399  }
1400  if (simRemoveCollection==0)
1401  {
1402  printf("%s simRemoveCollection\n",couldNotFind);
1403  return 0;
1404  }
1405  if (simEmptyCollection==0)
1406  {
1407  printf("%s simEmptyCollection\n",couldNotFind);
1408  return 0;
1409  }
1410  if (simGetCollectionName==0)
1411  {
1412  printf("%s simGetCollectionName\n",couldNotFind);
1413  return 0;
1414  }
1415  if (simSetCollectionName==0)
1416  {
1417  printf("%s simSetCollectionName\n",couldNotFind);
1418  return 0;
1419  }
1420  if (simGetObjectMatrix==0)
1421  {
1422  printf("%s simGetObjectMatrix\n",couldNotFind);
1423  return 0;
1424  }
1425  if (simSetObjectMatrix==0)
1426  {
1427  printf("%s simSetObjectMatrix\n",couldNotFind);
1428  return 0;
1429  }
1430  if (simGetObjectPosition==0)
1431  {
1432  printf("%s simGetObjectPosition\n",couldNotFind);
1433  return 0;
1434  }
1435  if (simSetObjectPosition==0)
1436  {
1437  printf("%s simSetObjectPosition\n",couldNotFind);
1438  return 0;
1439  }
1440  if (simGetObjectOrientation==0)
1441  {
1442  printf("%s simGetObjectOrientation\n",couldNotFind);
1443  return 0;
1444  }
1445  if (simSetObjectOrientation==0)
1446  {
1447  printf("%s simSetObjectOrientation\n",couldNotFind);
1448  return 0;
1449  }
1450  if (simGetJointPosition==0)
1451  {
1452  printf("%s simGetJointPosition\n",couldNotFind);
1453  return 0;
1454  }
1455  if (simSetJointPosition==0)
1456  {
1457  printf("%s simSetJointPosition\n",couldNotFind);
1458  return 0;
1459  }
1461  {
1462  printf("%s simSetJointTargetPosition\n",couldNotFind);
1463  return 0;
1464  }
1466  {
1467  printf("%s simGetJointTargetPosition\n",couldNotFind);
1468  return 0;
1469  }
1470  if (simSetJointForce==0)
1471  {
1472  printf("%s simSetJointForce\n",couldNotFind);
1473  return 0;
1474  }
1475  if (simGetPathPosition==0)
1476  {
1477  printf("%s simGetPathPosition\n",couldNotFind);
1478  return 0;
1479  }
1480  if (simSetPathPosition==0)
1481  {
1482  printf("%s simSetPathPosition\n",couldNotFind);
1483  return 0;
1484  }
1485  if (simGetPathLength==0)
1486  {
1487  printf("%s simGetPathLength\n",couldNotFind);
1488  return 0;
1489  }
1490  if (simGetJointMatrix==0)
1491  {
1492  printf("%s simGetJointMatrix\n",couldNotFind);
1493  return 0;
1494  }
1496  {
1497  printf("%s simSetSphericalJointMatrix\n",couldNotFind);
1498  return 0;
1499  }
1500  if (simGetJointInterval==0)
1501  {
1502  printf("%s simGetJointInterval\n",couldNotFind);
1503  return 0;
1504  }
1505  if (simSetJointInterval==0)
1506  {
1507  printf("%s simSetJointInterval\n",couldNotFind);
1508  return 0;
1509  }
1510  if (simGetObjectParent==0)
1511  {
1512  printf("%s simGetObjectParent\n",couldNotFind);
1513  return 0;
1514  }
1515  if (simGetObjectChild==0)
1516  {
1517  printf("%s simGetObjectChild\n",couldNotFind);
1518  return 0;
1519  }
1520  if (simSetObjectParent==0)
1521  {
1522  printf("%s simSetObjectParent\n",couldNotFind);
1523  return 0;
1524  }
1525  if (simGetObjectType==0)
1526  {
1527  printf("%s simGetObjectType\n",couldNotFind);
1528  return 0;
1529  }
1530  if (simGetJointType==0)
1531  {
1532  printf("%s simGetJointType\n",couldNotFind);
1533  return 0;
1534  }
1535  if (simBuildIdentityMatrix==0)
1536  {
1537  printf("%s simBuildIdentityMatrix\n",couldNotFind);
1538  return 0;
1539  }
1540  if (simCopyMatrix==0)
1541  {
1542  printf("%s simCopyMatrix\n",couldNotFind);
1543  return 0;
1544  }
1545  if (simBuildMatrix==0)
1546  {
1547  printf("%s simBuildMatrix\n",couldNotFind);
1548  return 0;
1549  }
1551  {
1552  printf("%s simGetEulerAnglesFromMatrix\n",couldNotFind);
1553  return 0;
1554  }
1555  if (simInvertMatrix==0)
1556  {
1557  printf("%s simInvertMatrix\n",couldNotFind);
1558  return 0;
1559  }
1560  if (simMultiplyMatrices==0)
1561  {
1562  printf("%s simMultiplyMatrices\n",couldNotFind);
1563  return 0;
1564  }
1565  if (simInterpolateMatrices==0)
1566  {
1567  printf("%s simInterpolateMatrices\n",couldNotFind);
1568  return 0;
1569  }
1570  if (simTransformVector==0)
1571  {
1572  printf("%s simTransformVector\n",couldNotFind);
1573  return 0;
1574  }
1575  if (simReservedCommand==0)
1576  {
1577  printf("%s simReservedCommand\n",couldNotFind);
1578  return 0;
1579  }
1580  if (simGetSimulationTime==0)
1581  {
1582  printf("%s simGetSimulationTime\n",couldNotFind);
1583  return 0;
1584  }
1585  if (simGetSimulationState==0)
1586  {
1587  printf("%s simGetSimulationState\n",couldNotFind);
1588  return 0;
1589  }
1590  if (simGetSystemTime==0)
1591  {
1592  printf("%s simGetSystemTime\n",couldNotFind);
1593  return 0;
1594  }
1596  {
1597  printf("%s simGetSystemTimeInMilliseconds\n",couldNotFind);
1598  return 0;
1599  }
1600  if (simGetSystemTimeInMs==0)
1601  {
1602  printf("%s simGetSystemTimeInMs\n",couldNotFind);
1603  return 0;
1604  }
1605  if (simLoadScene==0)
1606  {
1607  printf("%s simLoadScene\n",couldNotFind);
1608  return 0;
1609  }
1610  if (simCloseScene==0)
1611  {
1612  printf("%s simCloseScene\n",couldNotFind);
1613  return 0;
1614  }
1615  if (simSaveScene==0)
1616  {
1617  printf("%s simSaveScene\n",couldNotFind);
1618  return 0;
1619  }
1620  if (simLoadModel==0)
1621  {
1622  printf("%s simLoadModel\n",couldNotFind);
1623  return 0;
1624  }
1625  if (simSaveModel==0)
1626  {
1627  printf("%s simSaveModel\n",couldNotFind);
1628  return 0;
1629  }
1630  if (simLoadUI==0)
1631  {
1632  printf("%s simLoadUI\n",couldNotFind);
1633  return 0;
1634  }
1635  if (simSaveUI==0)
1636  {
1637  printf("%s simSaveUI\n",couldNotFind);
1638  return 0;
1639  }
1640  if (simAddStatusbarMessage==0)
1641  {
1642  printf("%s simAddStatusbarMessage\n",couldNotFind);
1643  return 0;
1644  }
1645  if (simAddModuleMenuEntry==0)
1646  {
1647  printf("%s simAddModuleMenuEntry\n",couldNotFind);
1648  return 0;
1649  }
1651  {
1652  printf("%s simSetModuleMenuItemState\n",couldNotFind);
1653  return 0;
1654  }
1655  if (simDoesFileExist==0)
1656  {
1657  printf("%s simDoesFileExist\n",couldNotFind);
1658  return 0;
1659  }
1660  if (simIsObjectInSelection==0)
1661  {
1662  printf("%s simIsObjectInSelection\n",couldNotFind);
1663  return 0;
1664  }
1665  if (simAddObjectToSelection==0)
1666  {
1667  printf("%s simAddObjectToSelection\n",couldNotFind);
1668  return 0;
1669  }
1671  {
1672  printf("%s simRemoveObjectFromSelection\n",couldNotFind);
1673  return 0;
1674  }
1676  {
1677  printf("%s simGetObjectSelectionSize\n",couldNotFind);
1678  return 0;
1679  }
1681  {
1682  printf("%s simGetObjectLastSelection\n",couldNotFind);
1683  return 0;
1684  }
1685  if (simGetObjectSelection==0)
1686  {
1687  printf("%s simGetObjectSelection\n",couldNotFind);
1688  return 0;
1689  }
1690  if (simHandleCollision==0)
1691  {
1692  printf("%s simHandleCollision\n",couldNotFind);
1693  return 0;
1694  }
1695  if (simReadCollision==0)
1696  {
1697  printf("%s simReadCollision\n",couldNotFind);
1698  return 0;
1699  }
1700  if (simHandleDistance==0)
1701  {
1702  printf("%s simHandleDistance\n",couldNotFind);
1703  return 0;
1704  }
1705  if (simReadDistance==0)
1706  {
1707  printf("%s simReadDistance\n",couldNotFind);
1708  return 0;
1709  }
1710  if (simHandleProximitySensor==0)
1711  {
1712  printf("%s simHandleProximitySensor\n",couldNotFind);
1713  return 0;
1714  }
1715  if (simReadProximitySensor==0)
1716  {
1717  printf("%s simReadProximitySensor\n",couldNotFind);
1718  return 0;
1719  }
1720  if (simHandleMill==0)
1721  {
1722  printf("%s simHandleMill\n",couldNotFind);
1723  return 0;
1724  }
1725  if (simHandleIkGroup==0)
1726  {
1727  printf("%s simHandleIkGroup\n",couldNotFind);
1728  return 0;
1729  }
1730  if (simCheckIkGroup==0)
1731  {
1732  printf("%s simCheckIkGroup\n",couldNotFind);
1733  return 0;
1734  }
1735  if (simHandleDynamics==0)
1736  {
1737  printf("%s simHandleDynamics\n",couldNotFind);
1738  return 0;
1739  }
1740  if (simGetMechanismHandle==0)
1741  {
1742  printf("%s simGetMechanismHandle\n",couldNotFind);
1743  return 0;
1744  }
1745  if (simHandleMechanism==0)
1746  {
1747  printf("%s simHandleMechanism\n",couldNotFind);
1748  return 0;
1749  }
1750  if (simGetScriptHandle==0)
1751  {
1752  printf("%s simGetScriptHandle\n",couldNotFind);
1753  return 0;
1754  }
1755  if (simSetScriptText==0)
1756  {
1757  printf("%s simSetScriptText\n",couldNotFind);
1758  return 0;
1759  }
1760  if (simGetScriptText==0)
1761  {
1762  printf("%s simGetScriptText\n",couldNotFind);
1763  return 0;
1764  }
1765  if (simGetScriptProperty==0)
1766  {
1767  printf("%s simGetScriptProperty\n",couldNotFind);
1768  return 0;
1769  }
1771  {
1772  printf("%s simAssociateScriptWithObject\n",couldNotFind);
1773  return 0;
1774  }
1775  if (simGetScript==0)
1776  {
1777  printf("%s simGetScript\n",couldNotFind);
1778  return 0;
1779  }
1781  {
1782  printf("%s simGetScriptAssociatedWithObject\n",couldNotFind);
1783  return 0;
1784  }
1786  {
1787  printf("%s simGetCustomizationScriptAssociatedWithObject\n",couldNotFind);
1788  return 0;
1789  }
1791  {
1792  printf("%s simGetObjectAssociatedWithScript\n",couldNotFind);
1793  return 0;
1794  }
1795  if (simGetScriptName==0)
1796  {
1797  printf("%s simGetScriptName\n",couldNotFind);
1798  return 0;
1799  }
1800  if (simHandleMainScript==0)
1801  {
1802  printf("%s simHandleMainScript\n",couldNotFind);
1803  return 0;
1804  }
1806  {
1807  printf("%s simHandleGeneralCallbackScript\n",couldNotFind);
1808  return 0;
1809  }
1810  if (simResetScript==0)
1811  {
1812  printf("%s simResetScript\n",couldNotFind);
1813  return 0;
1814  }
1815  if (simAddScript==0)
1816  {
1817  printf("%s simAddScript\n",couldNotFind);
1818  return 0;
1819  }
1820  if (simRemoveScript==0)
1821  {
1822  printf("%s simRemoveScript\n",couldNotFind);
1823  return 0;
1824  }
1825  if (simRefreshDialogs==0)
1826  {
1827  printf("%s simRefreshDialogs\n",couldNotFind);
1828  return 0;
1829  }
1830  if (simGetCollisionHandle==0)
1831  {
1832  printf("%s simGetCollisionHandle\n",couldNotFind);
1833  return 0;
1834  }
1835  if (simGetDistanceHandle==0)
1836  {
1837  printf("%s simGetDistanceHandle\n",couldNotFind);
1838  return 0;
1839  }
1840  if (simGetIkGroupHandle==0)
1841  {
1842  printf("%s simGetIkGroupHandle\n",couldNotFind);
1843  return 0;
1844  }
1845  if (simResetCollision==0)
1846  {
1847  printf("%s simResetCollision\n",couldNotFind);
1848  return 0;
1849  }
1850  if (simResetDistance==0)
1851  {
1852  printf("%s simResetDistance\n",couldNotFind);
1853  return 0;
1854  }
1855  if (simResetProximitySensor==0)
1856  {
1857  printf("%s simResetProximitySensor\n",couldNotFind);
1858  return 0;
1859  }
1860  if (simResetMill==0)
1861  {
1862  printf("%s simResetMill\n",couldNotFind);
1863  return 0;
1864  }
1865  if (simCheckProximitySensor==0)
1866  {
1867  printf("%s simCheckProximitySensor\n",couldNotFind);
1868  return 0;
1869  }
1871  {
1872  printf("%s simCheckProximitySensorEx\n",couldNotFind);
1873  return 0;
1874  }
1876  {
1877  printf("%s simCheckProximitySensorEx2\n",couldNotFind);
1878  return 0;
1879  }
1880  if (simAddSceneCustomData==0)
1881  {
1882  printf("%s simAddSceneCustomData\n",couldNotFind);
1883  return 0;
1884  }
1886  {
1887  printf("%s simGetSceneCustomDataLength\n",couldNotFind);
1888  return 0;
1889  }
1890  if (simGetSceneCustomData==0)
1891  {
1892  printf("%s simGetSceneCustomData\n",couldNotFind);
1893  return 0;
1894  }
1895  if (simAddObjectCustomData==0)
1896  {
1897  printf("%s simAddObjectCustomData\n",couldNotFind);
1898  return 0;
1899  }
1901  {
1902  printf("%s simGetObjectCustomDataLength\n",couldNotFind);
1903  return 0;
1904  }
1905  if (simGetObjectCustomData==0)
1906  {
1907  printf("%s simGetObjectCustomData\n",couldNotFind);
1908  return 0;
1909  }
1910  if (simCreateBuffer==0)
1911  {
1912  printf("%s simCreateBuffer\n",couldNotFind);
1913  return 0;
1914  }
1915  if (simReleaseBuffer==0)
1916  {
1917  printf("%s simReleaseBuffer\n",couldNotFind);
1918  return 0;
1919  }
1920  if (simCheckCollision==0)
1921  {
1922  printf("%s simCheckCollision\n",couldNotFind);
1923  return 0;
1924  }
1925  if (simCheckCollisionEx==0)
1926  {
1927  printf("%s simCheckCollisionEx\n",couldNotFind);
1928  return 0;
1929  }
1930  if (simCheckDistance==0)
1931  {
1932  printf("%s simCheckDistance\n",couldNotFind);
1933  return 0;
1934  }
1936  {
1937  printf("%s simGetObjectConfiguration\n",couldNotFind);
1938  return 0;
1939  }
1941  {
1942  printf("%s simSetObjectConfiguration\n",couldNotFind);
1943  return 0;
1944  }
1945  if (simGetConfigurationTree==0)
1946  {
1947  printf("%s simGetConfigurationTree\n",couldNotFind);
1948  return 0;
1949  }
1950  if (simSetConfigurationTree==0)
1951  {
1952  printf("%s simSetConfigurationTree\n",couldNotFind);
1953  return 0;
1954  }
1955  if (simSetSimulationTimeStep==0)
1956  {
1957  printf("%s simSetSimulationTimeStep\n",couldNotFind);
1958  return 0;
1959  }
1960  if (simGetSimulationTimeStep==0)
1961  {
1962  printf("%s simGetSimulationTimeStep\n",couldNotFind);
1963  return 0;
1964  }
1965  if (simGetRealTimeSimulation==0)
1966  {
1967  printf("%s simGetRealTimeSimulation\n",couldNotFind);
1968  return 0;
1969  }
1971  {
1972  printf("%s simIsRealTimeSimulationStepNeeded\n",couldNotFind);
1973  return 0;
1974  }
1975  if (simAdjustRealTimeTimer==0)
1976  {
1977  printf("%s simAdjustRealTimeTimer\n",couldNotFind);
1978  return 0;
1979  }
1981  {
1982  printf("%s simGetSimulationPassesPerRenderingPass\n",couldNotFind);
1983  return 0;
1984  }
1986  {
1987  printf("%s simAdvanceSimulationByOneStep\n",couldNotFind);
1988  return 0;
1989  }
1990  if (simStartSimulation==0)
1991  {
1992  printf("%s simStartSimulation\n",couldNotFind);
1993  return 0;
1994  }
1995  if (simStopSimulation==0)
1996  {
1997  printf("%s simStopSimulation\n",couldNotFind);
1998  return 0;
1999  }
2000  if (simPauseSimulation==0)
2001  {
2002  printf("%s simPauseSimulation\n",couldNotFind);
2003  return 0;
2004  }
2005  if (simBroadcastMessage==0)
2006  {
2007  printf("%s simBroadcastMessage\n",couldNotFind);
2008  return 0;
2009  }
2010  if (simGetModuleName==0)
2011  {
2012  printf("%s simGetModuleName\n",couldNotFind);
2013  return 0;
2014  }
2016  {
2017  printf("%s simGetScriptSimulationParameter\n",couldNotFind);
2018  return 0;
2019  }
2021  {
2022  printf("%s simSetScriptSimulationParameter\n",couldNotFind);
2023  return 0;
2024  }
2025  if (simFloatingViewAdd==0)
2026  {
2027  printf("%s simFloatingViewAdd\n",couldNotFind);
2028  return 0;
2029  }
2030  if (simFloatingViewRemove==0)
2031  {
2032  printf("%s simFloatingViewRemove\n",couldNotFind);
2033  return 0;
2034  }
2035  if (simAdjustView==0)
2036  {
2037  printf("%s simAdjustView\n",couldNotFind);
2038  return 0;
2039  }
2040  if (simSetLastError==0)
2041  {
2042  printf("%s simSetLastError\n",couldNotFind);
2043  return 0;
2044  }
2045  if (simHandleGraph==0)
2046  {
2047  printf("%s simHandleGraph\n",couldNotFind);
2048  return 0;
2049  }
2050  if (simResetGraph==0)
2051  {
2052  printf("%s simResetGraph\n",couldNotFind);
2053  return 0;
2054  }
2055  if (simSetNavigationMode==0)
2056  {
2057  printf("%s simSetNavigationMode\n",couldNotFind);
2058  return 0;
2059  }
2060  if (simGetNavigationMode==0)
2061  {
2062  printf("%s simGetNavigationMode\n",couldNotFind);
2063  return 0;
2064  }
2065  if (simSetPage==0)
2066  {
2067  printf("%s simSetPage\n",couldNotFind);
2068  return 0;
2069  }
2070  if (simGetPage==0)
2071  {
2072  printf("%s simGetPage\n",couldNotFind);
2073  return 0;
2074  }
2075  if (simDisplayDialog==0)
2076  {
2077  printf("%s simDisplayDialog\n",couldNotFind);
2078  return 0;
2079  }
2080  if (simGetDialogResult==0)
2081  {
2082  printf("%s simGetDialogResult\n",couldNotFind);
2083  return 0;
2084  }
2085  if (simGetDialogInput==0)
2086  {
2087  printf("%s simGetDialogInput\n",couldNotFind);
2088  return 0;
2089  }
2090  if (simEndDialog==0)
2091  {
2092  printf("%s simEndDialog\n",couldNotFind);
2093  return 0;
2094  }
2096  {
2097  printf("%s simRegisterCustomLuaFunction\n",couldNotFind);
2098  return 0;
2099  }
2101  {
2102  printf("%s simRegisterScriptCallbackFunction\n",couldNotFind);
2103  return 0;
2104  }
2106  {
2107  printf("%s simRegisterCustomLuaVariable\n",couldNotFind);
2108  return 0;
2109  }
2111  {
2112  printf("%s simRegisterScriptVariable\n",couldNotFind);
2113  return 0;
2114  }
2116  {
2117  printf("%s simSetJointTargetVelocity\n",couldNotFind);
2118  return 0;
2119  }
2121  {
2122  printf("%s simGetJointTargetVelocity\n",couldNotFind);
2123  return 0;
2124  }
2126  {
2127  printf("%s simSetPathTargetNominalVelocity\n",couldNotFind);
2128  return 0;
2129  }
2130  if (simGetScriptRawBuffer==0)
2131  {
2132  printf("%s simGetScriptRawBuffer\n",couldNotFind);
2133  return 0;
2134  }
2135  if (simSetScriptRawBuffer==0)
2136  {
2137  printf("%s simSetScriptRawBuffer\n",couldNotFind);
2138  return 0;
2139  }
2141  {
2142  printf("%s simReleaseScriptRawBuffer\n",couldNotFind);
2143  return 0;
2144  }
2145  if (simCopyPasteObjects==0)
2146  {
2147  printf("%s simCopyPasteObjects\n",couldNotFind);
2148  return 0;
2149  }
2150  if (simScaleSelectedObjects==0)
2151  {
2152  printf("%s simScaleSelectedObjects\n",couldNotFind);
2153  return 0;
2154  }
2155  if (simScaleObjects==0)
2156  {
2157  printf("%s simScaleObjects\n",couldNotFind);
2158  return 0;
2159  }
2160  if (simDeleteSelectedObjects==0)
2161  {
2162  printf("%s simDeleteSelectedObjects\n",couldNotFind);
2163  return 0;
2164  }
2166  {
2167  printf("%s simGetObjectUniqueIdentifier\n",couldNotFind);
2168  return 0;
2169  }
2170  if (simGetNameSuffix==0)
2171  {
2172  printf("%s simGetNameSuffix\n",couldNotFind);
2173  return 0;
2174  }
2175  if (simSendData==0)
2176  {
2177  printf("%s simSendData\n",couldNotFind);
2178  return 0;
2179  }
2180  if (simReceiveData==0)
2181  {
2182  printf("%s simReceiveData\n",couldNotFind);
2183  return 0;
2184  }
2185  if (simSetGraphUserData==0)
2186  {
2187  printf("%s simSetGraphUserData\n",couldNotFind);
2188  return 0;
2189  }
2190  if (simSetNameSuffix==0)
2191  {
2192  printf("%s simSetNameSuffix\n",couldNotFind);
2193  return 0;
2194  }
2195  if (simAddDrawingObject==0)
2196  {
2197  printf("%s simAddDrawingObject\n",couldNotFind);
2198  return 0;
2199  }
2200  if (simRemoveDrawingObject==0)
2201  {
2202  printf("%s simRemoveDrawingObject\n",couldNotFind);
2203  return 0;
2204  }
2205  if (simAddDrawingObjectItem==0)
2206  {
2207  printf("%s simAddDrawingObjectItem\n",couldNotFind);
2208  return 0;
2209  }
2210  if (simAddParticleObject==0)
2211  {
2212  printf("%s simAddParticleObject\n",couldNotFind);
2213  return 0;
2214  }
2215  if (simRemoveParticleObject==0)
2216  {
2217  printf("%s simRemoveParticleObject\n",couldNotFind);
2218  return 0;
2219  }
2220  if (simAddParticleObjectItem==0)
2221  {
2222  printf("%s simAddParticleObjectItem\n",couldNotFind);
2223  return 0;
2224  }
2225  if (simGetObjectSizeFactor==0)
2226  {
2227  printf("%s simGetObjectSizeFactor\n",couldNotFind);
2228  return 0;
2229  }
2231  {
2232  printf("%s simAnnounceSceneContentChange\n",couldNotFind);
2233  return 0;
2234  }
2235  if (simResetMilling==0)
2236  {
2237  printf("%s simResetMilling\n",couldNotFind);
2238  return 0;
2239  }
2240  if (simApplyMilling==0)
2241  {
2242  printf("%s simApplyMilling\n",couldNotFind);
2243  return 0;
2244  }
2245  if (simSetIntegerSignal==0)
2246  {
2247  printf("%s simSetIntegerSignal\n",couldNotFind);
2248  return 0;
2249  }
2250  if (simGetIntegerSignal==0)
2251  {
2252  printf("%s simGetIntegerSignal\n",couldNotFind);
2253  return 0;
2254  }
2255  if (simClearIntegerSignal==0)
2256  {
2257  printf("%s simClearIntegerSignal\n",couldNotFind);
2258  return 0;
2259  }
2260  if (simSetFloatSignal==0)
2261  {
2262  printf("%s simSetFloatSignal\n",couldNotFind);
2263  return 0;
2264  }
2265  if (simGetFloatSignal==0)
2266  {
2267  printf("%s simGetFloatSignal\n",couldNotFind);
2268  return 0;
2269  }
2270  if (simClearFloatSignal==0)
2271  {
2272  printf("%s simClearFloatSignal\n",couldNotFind);
2273  return 0;
2274  }
2275  if (simSetStringSignal==0)
2276  {
2277  printf("%s simSetStringSignal\n",couldNotFind);
2278  return 0;
2279  }
2280  if (simGetStringSignal==0)
2281  {
2282  printf("%s simGetStringSignal\n",couldNotFind);
2283  return 0;
2284  }
2285  if (simClearStringSignal==0)
2286  {
2287  printf("%s simClearStringSignal\n",couldNotFind);
2288  return 0;
2289  }
2290  if (simGetSignalName==0)
2291  {
2292  printf("%s simGetSignalName\n",couldNotFind);
2293  return 0;
2294  }
2295  if (simSetObjectProperty==0)
2296  {
2297  printf("%s simSetObjectProperty\n",couldNotFind);
2298  return 0;
2299  }
2300  if (simGetObjectProperty==0)
2301  {
2302  printf("%s simGetObjectProperty\n",couldNotFind);
2303  return 0;
2304  }
2306  {
2307  printf("%s simSetObjectSpecialProperty\n",couldNotFind);
2308  return 0;
2309  }
2311  {
2312  printf("%s simGetObjectSpecialProperty\n",couldNotFind);
2313  return 0;
2314  }
2315  if (simGetPositionOnPath==0)
2316  {
2317  printf("%s simGetPositionOnPath\n",couldNotFind);
2318  return 0;
2319  }
2320  if (simGetDataOnPath==0)
2321  {
2322  printf("%s simGetDataOnPath\n",couldNotFind);
2323  return 0;
2324  }
2325  if (simGetOrientationOnPath==0)
2326  {
2327  printf("%s simGetOrientationOnPath\n",couldNotFind);
2328  return 0;
2329  }
2331  {
2332  printf("%s simGetClosestPositionOnPath\n",couldNotFind);
2333  return 0;
2334  }
2335  if (simReadForceSensor==0)
2336  {
2337  printf("%s simReadForceSensor\n",couldNotFind);
2338  return 0;
2339  }
2340  if (simBreakForceSensor==0)
2341  {
2342  printf("%s simBreakForceSensor\n",couldNotFind);
2343  return 0;
2344  }
2345  if (simGetShapeVertex==0)
2346  {
2347  printf("%s simGetShapeVertex\n",couldNotFind);
2348  return 0;
2349  }
2350  if (simGetShapeTriangle==0)
2351  {
2352  printf("%s simGetShapeTriangle\n",couldNotFind);
2353  return 0;
2354  }
2355  if (simSetLightParameters==0)
2356  {
2357  printf("%s simSetLightParameters\n",couldNotFind);
2358  return 0;
2359  }
2360  if (simGetLightParameters==0)
2361  {
2362  printf("%s simGetLightParameters\n",couldNotFind);
2363  return 0;
2364  }
2365  if (simHandleVarious==0)
2366  {
2367  printf("%s simHandleVarious\n",couldNotFind);
2368  return 0;
2369  }
2370  if (simGetVelocity==0)
2371  {
2372  printf("%s simGetVelocity\n",couldNotFind);
2373  return 0;
2374  }
2375  if (simGetObjectVelocity==0)
2376  {
2377  printf("%s simGetObjectVelocity\n",couldNotFind);
2378  return 0;
2379  }
2380  if (simAddForceAndTorque==0)
2381  {
2382  printf("%s simAddForceAndTorque\n",couldNotFind);
2383  return 0;
2384  }
2385  if (simAddForce==0)
2386  {
2387  printf("%s simAddForce\n",couldNotFind);
2388  return 0;
2389  }
2390  if (simSetExplicitHandling==0)
2391  {
2392  printf("%s simSetExplicitHandling\n",couldNotFind);
2393  return 0;
2394  }
2395  if (simGetExplicitHandling==0)
2396  {
2397  printf("%s simGetExplicitHandling\n",couldNotFind);
2398  return 0;
2399  }
2400  if (simGetLinkDummy==0)
2401  {
2402  printf("%s simGetLinkDummy\n",couldNotFind);
2403  return 0;
2404  }
2405  if (simSetLinkDummy==0)
2406  {
2407  printf("%s simSetLinkDummy\n",couldNotFind);
2408  return 0;
2409  }
2410  if (simSetModelProperty==0)
2411  {
2412  printf("%s simSetModelProperty\n",couldNotFind);
2413  return 0;
2414  }
2415  if (simGetModelProperty==0)
2416  {
2417  printf("%s simGetModelProperty\n",couldNotFind);
2418  return 0;
2419  }
2420  if (simSetShapeColor==0)
2421  {
2422  printf("%s simSetShapeColor\n",couldNotFind);
2423  return 0;
2424  }
2425  if (simGetShapeColor==0)
2426  {
2427  printf("%s simGetShapeColor\n",couldNotFind);
2428  return 0;
2429  }
2430  if (simResetDynamicObject==0)
2431  {
2432  printf("%s simResetDynamicObject\n",couldNotFind);
2433  return 0;
2434  }
2435  if (simSetJointMode==0)
2436  {
2437  printf("%s simSetJointMode\n",couldNotFind);
2438  return 0;
2439  }
2440  if (simGetJointMode==0)
2441  {
2442  printf("%s simGetJointMode\n",couldNotFind);
2443  return 0;
2444  }
2445  if (simSerialOpen==0)
2446  {
2447  printf("%s simSerialOpen\n",couldNotFind);
2448  return 0;
2449  }
2450  if (simSerialClose==0)
2451  {
2452  printf("%s simSerialClose\n",couldNotFind);
2453  return 0;
2454  }
2455  if (simSerialSend==0)
2456  {
2457  printf("%s simSerialSend\n",couldNotFind);
2458  return 0;
2459  }
2460  if (simSerialRead==0)
2461  {
2462  printf("%s simSerialRead\n",couldNotFind);
2463  return 0;
2464  }
2465  if (simSerialCheck==0)
2466  {
2467  printf("%s simSerialCheck\n",couldNotFind);
2468  return 0;
2469  }
2470  if (simGetContactInfo==0)
2471  {
2472  printf("%s simGetContactInfo\n",couldNotFind);
2473  return 0;
2474  }
2475  if (simSetThreadIsFree==0)
2476  {
2477  printf("%s simSetThreadIsFree\n",couldNotFind);
2478  return 0;
2479  }
2480  if (simTubeOpen==0)
2481  {
2482  printf("%s simTubeOpen\n",couldNotFind);
2483  return 0;
2484  }
2485  if (simTubeClose==0)
2486  {
2487  printf("%s simTubeClose\n",couldNotFind);
2488  return 0;
2489  }
2490  if (simTubeWrite==0)
2491  {
2492  printf("%s simTubeWrite\n",couldNotFind);
2493  return 0;
2494  }
2495  if (simTubeRead==0)
2496  {
2497  printf("%s simTubeRead\n",couldNotFind);
2498  return 0;
2499  }
2500  if (simTubeStatus==0)
2501  {
2502  printf("%s simTubeStatus\n",couldNotFind);
2503  return 0;
2504  }
2505  if (simAuxiliaryConsoleOpen==0)
2506  {
2507  printf("%s simAuxiliaryConsoleOpen\n",couldNotFind);
2508  return 0;
2509  }
2510  if (simAuxiliaryConsoleClose==0)
2511  {
2512  printf("%s simAuxiliaryConsoleClose\n",couldNotFind);
2513  return 0;
2514  }
2515  if (simAuxiliaryConsoleShow==0)
2516  {
2517  printf("%s simAuxiliaryConsoleShow\n",couldNotFind);
2518  return 0;
2519  }
2520  if (simAuxiliaryConsolePrint==0)
2521  {
2522  printf("%s simAuxiliaryConsolePrint\n",couldNotFind);
2523  return 0;
2524  }
2525  if (simImportShape==0)
2526  {
2527  printf("%s simImportShape\n",couldNotFind);
2528  return 0;
2529  }
2530  if (simImportMesh==0)
2531  {
2532  printf("%s simImportMesh\n",couldNotFind);
2533  return 0;
2534  }
2535  if (simExportMesh==0)
2536  {
2537  printf("%s simExportMesh\n",couldNotFind);
2538  return 0;
2539  }
2540  if (simCreateMeshShape==0)
2541  {
2542  printf("%s simCreateMeshShape\n",couldNotFind);
2543  return 0;
2544  }
2545  if (simCreatePureShape==0)
2546  {
2547  printf("%s simCreatePureShape\n",couldNotFind);
2548  return 0;
2549  }
2551  {
2552  printf("%s simCreateHeightfieldShape\n",couldNotFind);
2553  return 0;
2554  }
2555  if (simGetShapeMesh==0)
2556  {
2557  printf("%s simGetShapeMesh\n",couldNotFind);
2558  return 0;
2559  }
2560  if (simAddBanner==0)
2561  {
2562  printf("%s simAddBanner\n",couldNotFind);
2563  return 0;
2564  }
2565  if (simRemoveBanner==0)
2566  {
2567  printf("%s simRemoveBanner\n",couldNotFind);
2568  return 0;
2569  }
2570  if (simCreateJoint==0)
2571  {
2572  printf("%s simCreateJoint\n",couldNotFind);
2573  return 0;
2574  }
2575  if (simCreateDummy==0)
2576  {
2577  printf("%s simCreateDummy\n",couldNotFind);
2578  return 0;
2579  }
2580  if (simCreateProximitySensor==0)
2581  {
2582  printf("%s simCreateProximitySensor\n",couldNotFind);
2583  return 0;
2584  }
2585  if (simCreatePath==0)
2586  {
2587  printf("%s simCreatePath\n",couldNotFind);
2588  return 0;
2589  }
2590  if (simInsertPathCtrlPoints==0)
2591  {
2592  printf("%s simInsertPathCtrlPoints\n",couldNotFind);
2593  return 0;
2594  }
2595  if (simCutPathCtrlPoints==0)
2596  {
2597  printf("%s simCutPathCtrlPoints\n",couldNotFind);
2598  return 0;
2599  }
2600  if (simCreateVisionSensor==0)
2601  {
2602  printf("%s simCreateVisionSensor\n",couldNotFind);
2603  return 0;
2604  }
2605  if (simCreateForceSensor==0)
2606  {
2607  printf("%s simCreateForceSensor\n",couldNotFind);
2608  return 0;
2609  }
2611  {
2612  printf("%s simRegisterContactCallback\n",couldNotFind);
2613  return 0;
2614  }
2615  if (simGetObjectIntParameter==0)
2616  {
2617  printf("%s simGetObjectIntParameter\n",couldNotFind);
2618  return 0;
2619  }
2620  if (simSetObjectIntParameter==0)
2621  {
2622  printf("%s simSetObjectIntParameter\n",couldNotFind);
2623  return 0;
2624  }
2626  {
2627  printf("%s simGetObjectInt32Parameter\n",couldNotFind);
2628  return 0;
2629  }
2631  {
2632  printf("%s simSetObjectInt32Parameter\n",couldNotFind);
2633  return 0;
2634  }
2636  {
2637  printf("%s simGetObjectFloatParameter\n",couldNotFind);
2638  return 0;
2639  }
2641  {
2642  printf("%s simSetObjectFloatParameter\n",couldNotFind);
2643  return 0;
2644  }
2646  {
2647  printf("%s simGetObjectStringParameter\n",couldNotFind);
2648  return 0;
2649  }
2651  {
2652  printf("%s simSetObjectStringParameter\n",couldNotFind);
2653  return 0;
2654  }
2656  {
2657  printf("%s simSetSimulationPassesPerRenderingPass\n",couldNotFind);
2658  return 0;
2659  }
2660  if (simGetRotationAxis==0)
2661  {
2662  printf("%s simGetRotationAxis\n",couldNotFind);
2663  return 0;
2664  }
2665  if (simRotateAroundAxis==0)
2666  {
2667  printf("%s simRotateAroundAxis\n",couldNotFind);
2668  return 0;
2669  }
2670  if (simGetJointForce==0)
2671  {
2672  printf("%s simGetJointForce\n",couldNotFind);
2673  return 0;
2674  }
2675  if (simSetArrayParameter==0)
2676  {
2677  printf("%s simSetArrayParameter\n",couldNotFind);
2678  return 0;
2679  }
2680  if (simGetArrayParameter==0)
2681  {
2682  printf("%s simGetArrayParameter\n",couldNotFind);
2683  return 0;
2684  }
2685  if (simSetIkGroupProperties==0)
2686  {
2687  printf("%s simSetIkGroupProperties\n",couldNotFind);
2688  return 0;
2689  }
2691  {
2692  printf("%s simSetIkElementProperties\n",couldNotFind);
2693  return 0;
2694  }
2695  if (simCameraFitToView==0)
2696  {
2697  printf("%s simCameraFitToView\n",couldNotFind);
2698  return 0;
2699  }
2700  if (simPersistentDataWrite==0)
2701  {
2702  printf("%s simPersistentDataWrite\n",couldNotFind);
2703  return 0;
2704  }
2705  if (simPersistentDataRead==0)
2706  {
2707  printf("%s simPersistentDataRead\n",couldNotFind);
2708  return 0;
2709  }
2710  if (simIsHandleValid==0)
2711  {
2712  printf("%s simIsHandleValid\n",couldNotFind);
2713  return 0;
2714  }
2715  if (simHandleVisionSensor==0)
2716  {
2717  printf("%s simHandleVisionSensor\n",couldNotFind);
2718  return 0;
2719  }
2720  if (simReadVisionSensor==0)
2721  {
2722  printf("%s simReadVisionSensor\n",couldNotFind);
2723  return 0;
2724  }
2725  if (simResetVisionSensor==0)
2726  {
2727  printf("%s simResetVisionSensor\n",couldNotFind);
2728  return 0;
2729  }
2730  if (simCheckVisionSensor==0)
2731  {
2732  printf("%s simCheckVisionSensor\n",couldNotFind);
2733  return 0;
2734  }
2735  if (simCheckVisionSensorEx==0)
2736  {
2737  printf("%s simCheckVisionSensorEx\n",couldNotFind);
2738  return 0;
2739  }
2741  {
2742  printf("%s simGetVisionSensorResolution\n",couldNotFind);
2743  return 0;
2744  }
2745  if (simGetVisionSensorImage==0)
2746  {
2747  printf("%s simGetVisionSensorImage\n",couldNotFind);
2748  return 0;
2749  }
2751  {
2752  printf("%s simGetVisionSensorCharImage\n",couldNotFind);
2753  return 0;
2754  }
2755  if (simSetVisionSensorImage==0)
2756  {
2757  printf("%s simSetVisionSensorImage\n",couldNotFind);
2758  return 0;
2759  }
2761  {
2762  printf("%s simSetVisionSensorCharImage\n",couldNotFind);
2763  return 0;
2764  }
2766  {
2767  printf("%s simGetVisionSensorDepthBuffer\n",couldNotFind);
2768  return 0;
2769  }
2770  if (simCreateUI==0)
2771  {
2772  printf("%s simCreateUI\n",couldNotFind);
2773  return 0;
2774  }
2775  if (simCreateUIButton==0)
2776  {
2777  printf("%s simCreateUIButton\n",couldNotFind);
2778  return 0;
2779  }
2780  if (simGetUIHandle==0)
2781  {
2782  printf("%s simGetUIHandle\n",couldNotFind);
2783  return 0;
2784  }
2785  if (simGetUIProperty==0)
2786  {
2787  printf("%s simGetUIProperty\n",couldNotFind);
2788  return 0;
2789  }
2790  if (simGetUIEventButton==0)
2791  {
2792  printf("%s simGetUIEventButton\n",couldNotFind);
2793  return 0;
2794  }
2795  if (simSetUIProperty==0)
2796  {
2797  printf("%s simSetUIProperty\n",couldNotFind);
2798  return 0;
2799  }
2800  if (simGetUIButtonProperty==0)
2801  {
2802  printf("%s simGetUIButtonProperty\n",couldNotFind);
2803  return 0;
2804  }
2805  if (simSetUIButtonProperty==0)
2806  {
2807  printf("%s simSetUIButtonProperty\n",couldNotFind);
2808  return 0;
2809  }
2810  if (simGetUIButtonSize==0)
2811  {
2812  printf("%s simGetUIButtonSize\n",couldNotFind);
2813  return 0;
2814  }
2815  if (simSetUIButtonLabel==0)
2816  {
2817  printf("%s simSetUIButtonLabel\n",couldNotFind);
2818  return 0;
2819  }
2820  if (simGetUIButtonLabel==0)
2821  {
2822  printf("%s simGetUIButtonLabel\n",couldNotFind);
2823  return 0;
2824  }
2825  if (simSetUISlider==0)
2826  {
2827  printf("%s simSetUISlider\n",couldNotFind);
2828  return 0;
2829  }
2830  if (simGetUISlider==0)
2831  {
2832  printf("%s simGetUISlider\n",couldNotFind);
2833  return 0;
2834  }
2835  if (simSetUIButtonColor==0)
2836  {
2837  printf("%s simSetUIButtonColor\n",couldNotFind);
2838  return 0;
2839  }
2840  if (simSetUIButtonTexture==0)
2841  {
2842  printf("%s simSetUIButtonTexture\n",couldNotFind);
2843  return 0;
2844  }
2845  if (simCreateUIButtonArray==0)
2846  {
2847  printf("%s simCreateUIButtonArray\n",couldNotFind);
2848  return 0;
2849  }
2850  if (simSetUIButtonArrayColor==0)
2851  {
2852  printf("%s simSetUIButtonArrayColor\n",couldNotFind);
2853  return 0;
2854  }
2855  if (simDeleteUIButtonArray==0)
2856  {
2857  printf("%s simDeleteUIButtonArray\n",couldNotFind);
2858  return 0;
2859  }
2860  if (simRemoveUI==0)
2861  {
2862  printf("%s simRemoveUI\n",couldNotFind);
2863  return 0;
2864  }
2865  if (simSetUIPosition==0)
2866  {
2867  printf("%s simSetUIPosition\n",couldNotFind);
2868  return 0;
2869  }
2870  if (simGetUIPosition==0)
2871  {
2872  printf("%s simGetUIPosition\n",couldNotFind);
2873  return 0;
2874  }
2875  if (simGetObjectQuaternion==0)
2876  {
2877  printf("%s simGetObjectQuaternion\n",couldNotFind);
2878  return 0;
2879  }
2880  if (simSetObjectQuaternion==0)
2881  {
2882  printf("%s simSetObjectQuaternion\n",couldNotFind);
2883  return 0;
2884  }
2885  if (simRMLPosition==0)
2886  {
2887  printf("%s simRMLPosition\n",couldNotFind);
2888  return 0;
2889  }
2890  if (simRMLVelocity==0)
2891  {
2892  printf("%s simRMLVelocity\n",couldNotFind);
2893  return 0;
2894  }
2895  if (simRMLPos==0)
2896  {
2897  printf("%s simRMLPos\n",couldNotFind);
2898  return 0;
2899  }
2900  if (simRMLVel==0)
2901  {
2902  printf("%s simRMLVel\n",couldNotFind);
2903  return 0;
2904  }
2905  if (simRMLStep==0)
2906  {
2907  printf("%s simRMLStep\n",couldNotFind);
2908  return 0;
2909  }
2910  if (simRMLRemove==0)
2911  {
2912  printf("%s simRMLRemove\n",couldNotFind);
2913  return 0;
2914  }
2915  if (simBuildMatrixQ==0)
2916  {
2917  printf("%s simBuildMatrixQ\n",couldNotFind);
2918  return 0;
2919  }
2921  {
2922  printf("%s simGetQuaternionFromMatrix\n",couldNotFind);
2923  return 0;
2924  }
2925  if (simFileDialog==0)
2926  {
2927  printf("%s simFileDialog\n",couldNotFind);
2928  return 0;
2929  }
2930  if (simMsgBox==0)
2931  {
2932  printf("%s simMsgBox\n",couldNotFind);
2933  return 0;
2934  }
2936  {
2937  printf("%s simSetShapeMassAndInertia\n",couldNotFind);
2938  return 0;
2939  }
2941  {
2942  printf("%s simGetShapeMassAndInertia\n",couldNotFind);
2943  return 0;
2944  }
2945  if (simGroupShapes==0)
2946  {
2947  printf("%s simGroupShapes\n",couldNotFind);
2948  return 0;
2949  }
2950  if (simUngroupShape==0)
2951  {
2952  printf("%s simUngroupShape\n",couldNotFind);
2953  return 0;
2954  }
2955  if (simConvexDecompose==0)
2956  {
2957  printf("%s simConvexDecompose\n",couldNotFind);
2958  return 0;
2959  }
2960  if (simGetIkGroupMatrix==0)
2961  {
2962  printf("%s simGetIkGroupMatrix\n",couldNotFind);
2963  return 0;
2964  }
2965  if (simAddGhost==0)
2966  {
2967  printf("%s simAddGhost\n",couldNotFind);
2968  return 0;
2969  }
2970  if (simModifyGhost==0)
2971  {
2972  printf("%s simModifyGhost\n",couldNotFind);
2973  return 0;
2974  }
2975  if (simQuitSimulator==0)
2976  {
2977  printf("%s simQuitSimulator\n",couldNotFind);
2978  return 0;
2979  }
2980  if (simGetThreadId==0)
2981  {
2982  printf("%s simGetThreadId\n",couldNotFind);
2983  return 0;
2984  }
2985  if (simLockResources==0)
2986  {
2987  printf("%s simLockResources\n",couldNotFind);
2988  return 0;
2989  }
2990  if (simUnlockResources==0)
2991  {
2992  printf("%s simUnlockResources\n",couldNotFind);
2993  return 0;
2994  }
2995  if (simEnableEventCallback==0)
2996  {
2997  printf("%s simEnableEventCallback\n",couldNotFind);
2998  return 0;
2999  }
3000  if (simGetMaterialId==0)
3001  {
3002  printf("%s simGetMaterialId\n",couldNotFind);
3003  return 0;
3004  }
3005  if (simSetShapeMaterial==0)
3006  {
3007  printf("%s simSetShapeMaterial\n",couldNotFind);
3008  return 0;
3009  }
3010  if (simGetShapeMaterial==0)
3011  {
3012  printf("%s simGetShapeMaterial\n",couldNotFind);
3013  return 0;
3014  }
3015  if (simGetTextureId==0)
3016  {
3017  printf("%s simGetTextureId\n",couldNotFind);
3018  return 0;
3019  }
3020  if (simReadTexture==0)
3021  {
3022  printf("%s simReadTexture\n",couldNotFind);
3023  return 0;
3024  }
3025  if (simWriteTexture==0)
3026  {
3027  printf("%s simWriteTexture\n",couldNotFind);
3028  return 0;
3029  }
3030  if (simCreateTexture==0)
3031  {
3032  printf("%s simCreateTexture\n",couldNotFind);
3033  return 0;
3034  }
3035  if (simWriteCustomDataBlock==0)
3036  {
3037  printf("%s simWriteCustomDataBlock\n",couldNotFind);
3038  return 0;
3039  }
3040  if (simReadCustomDataBlock==0)
3041  {
3042  printf("%s simReadCustomDataBlock\n",couldNotFind);
3043  return 0;
3044  }
3045  if (simAddPointCloud==0)
3046  {
3047  printf("%s simAddPointCloud\n",couldNotFind);
3048  return 0;
3049  }
3050  if (simModifyPointCloud==0)
3051  {
3052  printf("%s simModifyPointCloud\n",couldNotFind);
3053  return 0;
3054  }
3055  if (simGetShapeGeomInfo==0)
3056  {
3057  printf("%s simGetShapeGeomInfo\n",couldNotFind);
3058  return 0;
3059  }
3060  if (simGetObjectsInTree==0)
3061  {
3062  printf("%s simGetObjectsInTree\n",couldNotFind);
3063  return 0;
3064  }
3065  if (simSetObjectSizeValues==0)
3066  {
3067  printf("%s simSetObjectSizeValues\n",couldNotFind);
3068  return 0;
3069  }
3070  if (simGetObjectSizeValues==0)
3071  {
3072  printf("%s simGetObjectSizeValues\n",couldNotFind);
3073  return 0;
3074  }
3075  if (simScaleObject==0)
3076  {
3077  printf("%s simScaleObject\n",couldNotFind);
3078  return 0;
3079  }
3080  if (simSetShapeTexture==0)
3081  {
3082  printf("%s simSetShapeTexture\n",couldNotFind);
3083  return 0;
3084  }
3085  if (simGetShapeTextureId==0)
3086  {
3087  printf("%s simGetShapeTextureId\n",couldNotFind);
3088  return 0;
3089  }
3090  if (simGetCollectionObjects==0)
3091  {
3092  printf("%s simGetCollectionObjects\n",couldNotFind);
3093  return 0;
3094  }
3096  {
3097  printf("%s simHandleCustomizationScripts\n",couldNotFind);
3098  return 0;
3099  }
3100  if (simSetScriptAttribute==0)
3101  {
3102  printf("%s simSetScriptAttribute\n",couldNotFind);
3103  return 0;
3104  }
3105  if (simGetScriptAttribute==0)
3106  {
3107  printf("%s simGetScriptAttribute\n",couldNotFind);
3108  return 0;
3109  }
3111  {
3112  printf("%s simReorientShapeBoundingBox\n",couldNotFind);
3113  return 0;
3114  }
3115  if (simSwitchThread==0)
3116  {
3117  printf("%s simSwitchThread\n",couldNotFind);
3118  return 0;
3119  }
3120  if (simCreateIkGroup==0)
3121  {
3122  printf("%s simCreateIkGroup\n",couldNotFind);
3123  return 0;
3124  }
3125  if (simRemoveIkGroup==0)
3126  {
3127  printf("%s simRemoveIkGroup\n",couldNotFind);
3128  return 0;
3129  }
3130  if (simCreateIkElement==0)
3131  {
3132  printf("%s simCreateIkElement\n",couldNotFind);
3133  return 0;
3134  }
3135  if (simCreateCollection==0)
3136  {
3137  printf("%s simCreateCollection\n",couldNotFind);
3138  return 0;
3139  }
3140  if (simAddObjectToCollection==0)
3141  {
3142  printf("%s simAddObjectToCollection\n",couldNotFind);
3143  return 0;
3144  }
3145  if (simSaveImage==0)
3146  {
3147  printf("%s simSaveImage\n",couldNotFind);
3148  return 0;
3149  }
3150  if (simLoadImage==0)
3151  {
3152  printf("%s simLoadImage\n",couldNotFind);
3153  return 0;
3154  }
3155  if (simGetScaledImage==0)
3156  {
3157  printf("%s simGetScaledImage\n",couldNotFind);
3158  return 0;
3159  }
3160  if (simTransformImage==0)
3161  {
3162  printf("%s simTransformImage\n",couldNotFind);
3163  return 0;
3164  }
3165  if (simGetQHull==0)
3166  {
3167  printf("%s simGetQHull\n",couldNotFind);
3168  return 0;
3169  }
3170  if (simGetDecimatedMesh==0)
3171  {
3172  printf("%s simGetDecimatedMesh\n",couldNotFind);
3173  return 0;
3174  }
3175  if (simExportIk==0)
3176  {
3177  printf("%s simExportIk\n",couldNotFind);
3178  return 0;
3179  }
3180  if (simCallScriptFunction==0)
3181  {
3182  printf("%s simCallScriptFunction\n",couldNotFind);
3183  return 0;
3184  }
3185  if (simCallScriptFunctionEx==0)
3186  {
3187  printf("%s simCallScriptFunctionEx\n",couldNotFind);
3188  return 0;
3189  }
3190  if (simComputeJacobian==0)
3191  {
3192  printf("%s simComputeJacobian\n",couldNotFind);
3193  return 0;
3194  }
3195  if (simGetConfigForTipPose==0)
3196  {
3197  printf("%s simGetConfigForTipPose\n",couldNotFind);
3198  return 0;
3199  }
3200  if (simGenerateIkPath==0)
3201  {
3202  printf("%s simGenerateIkPath\n",couldNotFind);
3203  return 0;
3204  }
3205  if (simGetExtensionString==0)
3206  {
3207  printf("%s simGetExtensionString\n",couldNotFind);
3208  return 0;
3209  }
3210  if (simComputeMassAndInertia==0)
3211  {
3212  printf("%s simComputeMassAndInertia\n",couldNotFind);
3213  return 0;
3214  }
3215  if (simCreateStack==0)
3216  {
3217  printf("%s simCreateStack\n",couldNotFind);
3218  return 0;
3219  }
3220  if (simReleaseStack==0)
3221  {
3222  printf("%s simReleaseStack\n",couldNotFind);
3223  return 0;
3224  }
3225  if (simCopyStack==0)
3226  {
3227  printf("%s simCopyStack\n",couldNotFind);
3228  return 0;
3229  }
3230  if (simPushNullOntoStack==0)
3231  {
3232  printf("%s simPushNullOntoStack\n",couldNotFind);
3233  return 0;
3234  }
3235  if (simPushBoolOntoStack==0)
3236  {
3237  printf("%s simPushBoolOntoStack\n",couldNotFind);
3238  return 0;
3239  }
3240  if (simPushInt32OntoStack==0)
3241  {
3242  printf("%s simPushInt32OntoStack\n",couldNotFind);
3243  return 0;
3244  }
3245  if (simPushFloatOntoStack==0)
3246  {
3247  printf("%s simPushFloatOntoStack\n",couldNotFind);
3248  return 0;
3249  }
3250  if (simPushDoubleOntoStack==0)
3251  {
3252  printf("%s simPushDoubleOntoStack\n",couldNotFind);
3253  return 0;
3254  }
3255  if (simPushStringOntoStack==0)
3256  {
3257  printf("%s simPushStringOntoStack\n",couldNotFind);
3258  return 0;
3259  }
3261  {
3262  printf("%s simPushUInt8TableOntoStack\n",couldNotFind);
3263  return 0;
3264  }
3266  {
3267  printf("%s simPushInt32TableOntoStack\n",couldNotFind);
3268  return 0;
3269  }
3271  {
3272  printf("%s simPushFloatTableOntoStack\n",couldNotFind);
3273  return 0;
3274  }
3276  {
3277  printf("%s simPushDoubleTableOntoStack\n",couldNotFind);
3278  return 0;
3279  }
3280  if (simPushTableOntoStack==0)
3281  {
3282  printf("%s simPushTableOntoStack\n",couldNotFind);
3283  return 0;
3284  }
3286  {
3287  printf("%s simInsertDataIntoStackTable\n",couldNotFind);
3288  return 0;
3289  }
3290  if (simGetStackSize==0)
3291  {
3292  printf("%s simGetStackSize\n",couldNotFind);
3293  return 0;
3294  }
3295  if (simPopStackItem==0)
3296  {
3297  printf("%s simPopStackItem\n",couldNotFind);
3298  return 0;
3299  }
3300  if (simMoveStackItemToTop==0)
3301  {
3302  printf("%s simMoveStackItemToTop\n",couldNotFind);
3303  return 0;
3304  }
3305  if (simIsStackValueNull==0)
3306  {
3307  printf("%s simIsStackValueNull\n",couldNotFind);
3308  return 0;
3309  }
3310  if (simGetStackBoolValue==0)
3311  {
3312  printf("%s simGetStackBoolValue\n",couldNotFind);
3313  return 0;
3314  }
3315  if (simGetStackInt32Value==0)
3316  {
3317  printf("%s simGetStackInt32Value\n",couldNotFind);
3318  return 0;
3319  }
3320  if (simGetStackFloatValue==0)
3321  {
3322  printf("%s simGetStackFloatValue\n",couldNotFind);
3323  return 0;
3324  }
3325  if (simGetStackDoubleValue==0)
3326  {
3327  printf("%s simGetStackDoubleValue\n",couldNotFind);
3328  return 0;
3329  }
3330  if (simGetStackStringValue==0)
3331  {
3332  printf("%s simGetStackStringValue\n",couldNotFind);
3333  return 0;
3334  }
3335  if (simGetStackTableInfo==0)
3336  {
3337  printf("%s simGetStackTableInfo\n",couldNotFind);
3338  return 0;
3339  }
3340  if (simGetStackUInt8Table==0)
3341  {
3342  printf("%s simGetStackUInt8Table\n",couldNotFind);
3343  return 0;
3344  }
3345  if (simGetStackInt32Table==0)
3346  {
3347  printf("%s simGetStackInt32Table\n",couldNotFind);
3348  return 0;
3349  }
3350  if (simGetStackFloatTable==0)
3351  {
3352  printf("%s simGetStackFloatTable\n",couldNotFind);
3353  return 0;
3354  }
3355  if (simGetStackDoubleTable==0)
3356  {
3357  printf("%s simGetStackDoubleTable\n",couldNotFind);
3358  return 0;
3359  }
3360  if (simUnfoldStackTable==0)
3361  {
3362  printf("%s simUnfoldStackTable\n",couldNotFind);
3363  return 0;
3364  }
3365  if (simDebugStack==0)
3366  {
3367  printf("%s simDebugStack\n",couldNotFind);
3368  return 0;
3369  }
3370  if (simSetScriptVariable==0)
3371  {
3372  printf("%s simSetScriptVariable\n",couldNotFind);
3373  return 0;
3374  }
3376  {
3377  printf("%s simGetEngineFloatParameter\n",couldNotFind);
3378  return 0;
3379  }
3381  {
3382  printf("%s simGetEngineInt32Parameter\n",couldNotFind);
3383  return 0;
3384  }
3386  {
3387  printf("%s simGetEngineBoolParameter\n",couldNotFind);
3388  return 0;
3389  }
3391  {
3392  printf("%s simSetEngineFloatParameter\n",couldNotFind);
3393  return 0;
3394  }
3396  {
3397  printf("%s simSetEngineInt32Parameter\n",couldNotFind);
3398  return 0;
3399  }
3401  {
3402  printf("%s simSetEngineBoolParameter\n",couldNotFind);
3403  return 0;
3404  }
3405  if (simCreateOctree==0)
3406  {
3407  printf("%s simCreateOctree\n",couldNotFind);
3408  return 0;
3409  }
3410  if (simCreatePointCloud==0)
3411  {
3412  printf("%s simCreatePointCloud\n",couldNotFind);
3413  return 0;
3414  }
3415  if (simSetPointCloudOptions==0)
3416  {
3417  printf("%s simSetPointCloudOptions\n",couldNotFind);
3418  return 0;
3419  }
3420  if (simGetPointCloudOptions==0)
3421  {
3422  printf("%s simGetPointCloudOptions\n",couldNotFind);
3423  return 0;
3424  }
3426  {
3427  printf("%s simInsertVoxelsIntoOctree\n",couldNotFind);
3428  return 0;
3429  }
3431  {
3432  printf("%s simRemoveVoxelsFromOctree\n",couldNotFind);
3433  return 0;
3434  }
3436  {
3437  printf("%s simInsertPointsIntoPointCloud\n",couldNotFind);
3438  return 0;
3439  }
3441  {
3442  printf("%s simRemovePointsFromPointCloud\n",couldNotFind);
3443  return 0;
3444  }
3446  {
3447  printf("%s simIntersectPointsWithPointCloud\n",couldNotFind);
3448  return 0;
3449  }
3450  if (simGetOctreeVoxels==0)
3451  {
3452  printf("%s simGetOctreeVoxels\n",couldNotFind);
3453  return 0;
3454  }
3455  if (simGetPointCloudPoints==0)
3456  {
3457  printf("%s simGetPointCloudPoints\n",couldNotFind);
3458  return 0;
3459  }
3461  {
3462  printf("%s simInsertObjectIntoOctree\n",couldNotFind);
3463  return 0;
3464  }
3466  {
3467  printf("%s simSubtractObjectFromOctree\n",couldNotFind);
3468  return 0;
3469  }
3471  {
3472  printf("%s simInsertObjectIntoPointCloud\n",couldNotFind);
3473  return 0;
3474  }
3476  {
3477  printf("%s simSubtractObjectFromPointCloud\n",couldNotFind);
3478  return 0;
3479  }
3481  {
3482  printf("%s simCheckOctreePointOccupancy\n",couldNotFind);
3483  return 0;
3484  }
3485  if (simOpenTextEditor==0)
3486  {
3487  printf("%s simOpenTextEditor\n",couldNotFind);
3488  return 0;
3489  }
3490  if (simPackTable==0)
3491  {
3492  printf("%s simPackTable\n",couldNotFind);
3493  return 0;
3494  }
3495  if (simUnpackTable==0)
3496  {
3497  printf("%s simUnpackTable\n",couldNotFind);
3498  return 0;
3499  }
3500 
3501 
3502 
3503 
3505  {
3506  printf("%s _simGetContactCallbackCount\n",couldNotFind);
3507  return 0;
3508  }
3509  if (_simGetContactCallback==0)
3510  {
3511  printf("%s _simGetContactCallback\n",couldNotFind);
3512  return 0;
3513  }
3515  {
3516  printf("%s _simSetDynamicSimulationIconCode\n",couldNotFind);
3517  return 0;
3518  }
3520  {
3521  printf("%s _simSetDynamicObjectFlagForVisualization\n",couldNotFind);
3522  return 0;
3523  }
3524  if (_simGetObjectListSize==0)
3525  {
3526  printf("%s _simGetObjectListSize\n",couldNotFind);
3527  return 0;
3528  }
3529  if (_simGetObjectFromIndex==0)
3530  {
3531  printf("%s _simGetObjectFromIndex\n",couldNotFind);
3532  return 0;
3533  }
3534  if (_simGetObjectID==0)
3535  {
3536  printf("%s _simGetObjectID\n",couldNotFind);
3537  return 0;
3538  }
3539  if (_simGetObjectType==0)
3540  {
3541  printf("%s _simGetObjectType\n",couldNotFind);
3542  return 0;
3543  }
3544  if (_simGetObjectChildren==0)
3545  {
3546  printf("%s _simGetObjectChildren\n",couldNotFind);
3547  return 0;
3548  }
3550  {
3551  printf("%s _simGetGeomProxyFromShape\n",couldNotFind);
3552  return 0;
3553  }
3554  if (_simGetParentObject==0)
3555  {
3556  printf("%s _simGetParentObject\n",couldNotFind);
3557  return 0;
3558  }
3559  if (_simGetObject==0)
3560  {
3561  printf("%s _simGetObject\n",couldNotFind);
3562  return 0;
3563  }
3564  if (_simGetIkGroupObject==0)
3565  {
3566  printf("%s _simGetIkGroupObject\n",couldNotFind);
3567  return 0;
3568  }
3570  {
3571  printf("%s _simMpHandleIkGroupObject\n",couldNotFind);
3572  return 0;
3573  }
3575  {
3576  printf("%s _simGetObjectLocalTransformation\n",couldNotFind);
3577  return 0;
3578  }
3580  {
3581  printf("%s _simSetObjectLocalTransformation\n",couldNotFind);
3582  return 0;
3583  }
3585  {
3586  printf("%s _simSetObjectCumulativeTransformation\n",couldNotFind);
3587  return 0;
3588  }
3590  {
3591  printf("%s _simGetObjectCumulativeTransformation\n",couldNotFind);
3592  return 0;
3593  }
3595  {
3596  printf("%s _simIsShapeDynamicallyStatic\n",couldNotFind);
3597  return 0;
3598  }
3600  {
3601  printf("%s _simGetTreeDynamicProperty\n",couldNotFind);
3602  return 0;
3603  }
3604  if (_simGetDummyLinkType==0)
3605  {
3606  printf("%s _simGetDummyLinkType\n",couldNotFind);
3607  return 0;
3608  }
3609  if (_simGetJointMode==0)
3610  {
3611  printf("%s _simGetJointMode\n",couldNotFind);
3612  return 0;
3613  }
3615  {
3616  printf("%s _simIsJointInHybridOperation\n",couldNotFind);
3617  return 0;
3618  }
3620  {
3621  printf("%s _simDisableDynamicTreeForManipulation\n",couldNotFind);
3622  return 0;
3623  }
3625  {
3626  printf("%s _simIsShapeDynamicallyRespondable\n",couldNotFind);
3627  return 0;
3628  }
3630  {
3631  printf("%s _simGetDynamicCollisionMask\n",couldNotFind);
3632  return 0;
3633  }
3635  {
3636  printf("%s _simGetLastParentForLocalGlobalCollidable\n",couldNotFind);
3637  return 0;
3638  }
3640  {
3641  printf("%s _simSetShapeIsStaticAndNotRespondableButDynamicTag\n",couldNotFind);
3642  return 0;
3643  }
3645  {
3646  printf("%s _simGetShapeIsStaticAndNotRespondableButDynamicTag\n",couldNotFind);
3647  return 0;
3648  }
3649  if (_simSetJointPosition==0)
3650  {
3651  printf("%s _simSetJointPosition\n",couldNotFind);
3652  return 0;
3653  }
3654  if (_simGetJointPosition==0)
3655  {
3656  printf("%s _simGetJointPosition\n",couldNotFind);
3657  return 0;
3658  }
3660  {
3661  printf("%s _simSetDynamicMotorPositionControlTargetPosition\n",couldNotFind);
3662  return 0;
3663  }
3665  {
3666  printf("%s _simGetInitialDynamicVelocity\n",couldNotFind);
3667  return 0;
3668  }
3670  {
3671  printf("%s _simSetInitialDynamicVelocity\n",couldNotFind);
3672  return 0;
3673  }
3675  {
3676  printf("%s _simGetInitialDynamicAngVelocity\n",couldNotFind);
3677  return 0;
3678  }
3680  {
3681  printf("%s _simSetInitialDynamicAngVelocity\n",couldNotFind);
3682  return 0;
3683  }
3684  if (_simGetStartSleeping==0)
3685  {
3686  printf("%s _simGetStartSleeping\n",couldNotFind);
3687  return 0;
3688  }
3689  if (_simGetWasPutToSleepOnce==0)
3690  {
3691  printf("%s _simGetWasPutToSleepOnce\n",couldNotFind);
3692  return 0;
3693  }
3695  {
3696  printf("%s _simGetDynamicsFullRefreshFlag\n",couldNotFind);
3697  return 0;
3698  }
3700  {
3701  printf("%s _simSetDynamicsFullRefreshFlag\n",couldNotFind);
3702  return 0;
3703  }
3705  {
3706  printf("%s _simSetGeomProxyDynamicsFullRefreshFlag\n",couldNotFind);
3707  return 0;
3708  }
3710  {
3711  printf("%s _simGetGeomProxyDynamicsFullRefreshFlag\n",couldNotFind);
3712  return 0;
3713  }
3715  {
3716  printf("%s _simGetParentFollowsDynamic\n",couldNotFind);
3717  return 0;
3718  }
3720  {
3721  printf("%s _simSetShapeDynamicVelocity\n",couldNotFind);
3722  return 0;
3723  }
3725  {
3726  printf("%s _simGetAdditionalForceAndTorque\n",couldNotFind);
3727  return 0;
3728  }
3730  {
3731  printf("%s _simClearAdditionalForceAndTorque\n",couldNotFind);
3732  return 0;
3733  }
3735  {
3736  printf("%s _simGetJointPositionInterval\n",couldNotFind);
3737  return 0;
3738  }
3739  if (_simGetJointType==0)
3740  {
3741  printf("%s _simGetJointType\n",couldNotFind);
3742  return 0;
3743  }
3744  if (_simIsForceSensorBroken==0)
3745  {
3746  printf("%s _simIsForceSensorBroken\n",couldNotFind);
3747  return 0;
3748  }
3750  {
3751  printf("%s _simGetDynamicForceSensorLocalTransformationPart2\n",couldNotFind);
3752  return 0;
3753  }
3755  {
3756  printf("%s _simIsDynamicMotorEnabled\n",couldNotFind);
3757  return 0;
3758  }
3760  {
3761  printf("%s _simIsDynamicMotorPositionCtrlEnabled\n",couldNotFind);
3762  return 0;
3763  }
3765  {
3766  printf("%s _simIsDynamicMotorTorqueModulationEnabled\n",couldNotFind);
3767  return 0;
3768  }
3769  if (_simGetMotorPid==0)
3770  {
3771  printf("%s _simGetMotorPid\n",couldNotFind);
3772  return 0;
3773  }
3775  {
3776  printf("%s _simGetDynamicMotorTargetPosition\n",couldNotFind);
3777  return 0;
3778  }
3780  {
3781  printf("%s _simGetDynamicMotorTargetVelocity\n",couldNotFind);
3782  return 0;
3783  }
3785  {
3786  printf("%s _simGetDynamicMotorMaxForce\n",couldNotFind);
3787  return 0;
3788  }
3790  {
3791  printf("%s _simGetDynamicMotorUpperLimitVelocity\n",couldNotFind);
3792  return 0;
3793  }
3795  {
3796  printf("%s _simSetDynamicMotorReflectedPositionFromDynamicEngine\n",couldNotFind);
3797  return 0;
3798  }
3800  {
3801  printf("%s _simSetJointSphericalTransformation\n",couldNotFind);
3802  return 0;
3803  }
3805  {
3806  printf("%s _simAddForceSensorCumulativeForcesAndTorques\n",couldNotFind);
3807  return 0;
3808  }
3810  {
3811  printf("%s _simAddJointCumulativeForcesOrTorques\n",couldNotFind);
3812  return 0;
3813  }
3815  {
3816  printf("%s _simSetDynamicJointLocalTransformationPart2\n",couldNotFind);
3817  return 0;
3818  }
3820  {
3821  printf("%s _simSetDynamicForceSensorLocalTransformationPart2\n",couldNotFind);
3822  return 0;
3823  }
3825  {
3826  printf("%s _simSetDynamicJointLocalTransformationPart2IsValid\n",couldNotFind);
3827  return 0;
3828  }
3830  {
3831  printf("%s _simSetDynamicForceSensorLocalTransformationPart2IsValid\n",couldNotFind);
3832  return 0;
3833  }
3835  {
3836  printf("%s _simGetGeomWrapFromGeomProxy\n",couldNotFind);
3837  return 0;
3838  }
3839  if (_simGetLocalInertiaFrame==0)
3840  {
3841  printf("%s _simGetLocalInertiaFrame\n",couldNotFind);
3842  return 0;
3843  }
3844  if (_simGetPurePrimitiveType==0)
3845  {
3846  printf("%s _simGetPurePrimitiveType\n",couldNotFind);
3847  return 0;
3848  }
3849  if (_simIsGeomWrapGeometric==0)
3850  {
3851  printf("%s _simIsGeomWrapGeometric\n",couldNotFind);
3852  return 0;
3853  }
3854  if (_simIsGeomWrapConvex==0)
3855  {
3856  printf("%s _simIsGeomWrapConvex\n",couldNotFind);
3857  return 0;
3858  }
3859  if (_simGetGeometricCount==0)
3860  {
3861  printf("%s _simGetGeometricCount\n",couldNotFind);
3862  return 0;
3863  }
3864  if (_simGetAllGeometrics==0)
3865  {
3866  printf("%s _simGetAllGeometrics\n",couldNotFind);
3867  return 0;
3868  }
3870  {
3871  printf("%s _simGetPurePrimitiveSizes\n",couldNotFind);
3872  return 0;
3873  }
3875  {
3876  printf("%s _simMakeDynamicAnnouncement\n",couldNotFind);
3877  return 0;
3878  }
3880  {
3881  printf("%s _simGetVerticesLocalFrame\n",couldNotFind);
3882  return 0;
3883  }
3884  if (_simGetHeightfieldData==0)
3885  {
3886  printf("%s _simGetHeightfieldData\n",couldNotFind);
3887  return 0;
3888  }
3889  if (_simGetCumulativeMeshes==0)
3890  {
3891  printf("%s _simGetCumulativeMeshes\n",couldNotFind);
3892  return 0;
3893  }
3894  if (_simGetMass==0)
3895  {
3896  printf("%s _simGetMass\n",couldNotFind);
3897  return 0;
3898  }
3900  {
3901  printf("%s _simGetPrincipalMomentOfInertia\n",couldNotFind);
3902  return 0;
3903  }
3904  if (_simGetGravity==0)
3905  {
3906  printf("%s _simGetGravity\n",couldNotFind);
3907  return 0;
3908  }
3909  if (_simGetTimeDiffInMs==0)
3910  {
3911  printf("%s _simGetTimeDiffInMs\n",couldNotFind);
3912  return 0;
3913  }
3914  if (_simDoEntitiesCollide==0)
3915  {
3916  printf("%s _simDoEntitiesCollide\n",couldNotFind);
3917  return 0;
3918  }
3920  {
3921  printf("%s _simGetDistanceBetweenEntitiesIfSmaller\n",couldNotFind);
3922  return 0;
3923  }
3924  if (_simHandleJointControl==0)
3925  {
3926  printf("%s _simHandleJointControl\n",couldNotFind);
3927  return 0;
3928  }
3929  if (_simHandleCustomContact==0)
3930  {
3931  printf("%s _simHandleCustomContact\n",couldNotFind);
3932  return 0;
3933  }
3934  if (_simGetPureHollowScaling==0)
3935  {
3936  printf("%s _simGetPureHollowScaling\n",couldNotFind);
3937  return 0;
3938  }
3940  {
3941  printf("%s _simGetJointCallbackCallOrder\n",couldNotFind);
3942  return 0;
3943  }
3944 
3945 
3946 
3947 
3948  // Deprecated begin
3949  if (simSerialPortOpen==0)
3950  {
3951  printf("%s simSerialPortOpen\n",couldNotFind);
3952  return 0;
3953  }
3954  if (simSerialPortClose==0)
3955  {
3956  printf("%s simSerialPortClose\n",couldNotFind);
3957  return 0;
3958  }
3959  if (simSerialPortSend==0)
3960  {
3961  printf("%s simSerialPortSend\n",couldNotFind);
3962  return 0;
3963  }
3964  if (simSerialPortRead==0)
3965  {
3966  printf("%s simSerialPortRead\n",couldNotFind);
3967  return 0;
3968  }
3969  if (simJointGetForce==0)
3970  {
3971  printf("%s simJointGetForce\n",couldNotFind);
3972  return 0;
3973  }
3974  if (simGetPathPlanningHandle==0)
3975  {
3976  printf("%s simGetPathPlanningHandle\n",couldNotFind);
3977  return 0;
3978  }
3980  {
3981  printf("%s simGetMotionPlanningHandle\n",couldNotFind);
3982  return 0;
3983  }
3984  if (simGetMpConfigForTipPose==0)
3985  {
3986  printf("%s simGetMpConfigForTipPose\n",couldNotFind);
3987  return 0;
3988  }
3989  if (simFindMpPath==0)
3990  {
3991  printf("%s simFindMpPath\n",couldNotFind);
3992  return 0;
3993  }
3994  if (simSimplifyMpPath==0)
3995  {
3996  printf("%s simSimplifyMpPath\n",couldNotFind);
3997  return 0;
3998  }
3999  if (simGetMpConfigTransition==0)
4000  {
4001  printf("%s simGetMpConfigTransition\n",couldNotFind);
4002  return 0;
4003  }
4004  if (simFindIkPath==0)
4005  {
4006  printf("%s simFindIkPath\n",couldNotFind);
4007  return 0;
4008  }
4009  if (simCreateMotionPlanning==0)
4010  {
4011  printf("%s simCreateMotionPlanning\n",couldNotFind);
4012  return 0;
4013  }
4014  if (simRemoveMotionPlanning==0)
4015  {
4016  printf("%s simRemoveMotionPlanning\n",couldNotFind);
4017  return 0;
4018  }
4019  if (simSearchPath==0)
4020  {
4021  printf("%s simSearchPath\n",couldNotFind);
4022  return 0;
4023  }
4024  if (simInitializePathSearch==0)
4025  {
4026  printf("%s simInitializePathSearch\n",couldNotFind);
4027  return 0;
4028  }
4029  if (simPerformPathSearchStep==0)
4030  {
4031  printf("%s simPerformPathSearchStep\n",couldNotFind);
4032  return 0;
4033  }
4034  if (simLockInterface==0)
4035  {
4036  printf("%s simLockInterface\n",couldNotFind);
4037  return 0;
4038  }
4040  {
4041  printf("%s simCopyPasteSelectedObjects\n",couldNotFind);
4042  return 0;
4043  }
4044  if (simResetPath==0)
4045  {
4046  printf("%s simResetPath\n",couldNotFind);
4047  return 0;
4048  }
4049  if (simHandlePath==0)
4050  {
4051  printf("%s simHandlePath\n",couldNotFind);
4052  return 0;
4053  }
4054  if (simResetJoint==0)
4055  {
4056  printf("%s simResetJoint\n",couldNotFind);
4057  return 0;
4058  }
4059  if (simHandleJoint==0)
4060  {
4061  printf("%s simHandleJoint\n",couldNotFind);
4062  return 0;
4063  }
4065  {
4066  printf("%s simAppendScriptArrayEntry\n",couldNotFind);
4067  return 0;
4068  }
4069  if (simClearScriptVariable==0)
4070  {
4071  printf("%s simClearScriptVariable\n",couldNotFind);
4072  return 0;
4073  }
4075  {
4076  printf("%s _simGetJointOdeParameters\n",couldNotFind);
4077  return 0;
4078  }
4080  {
4081  printf("%s _simGetJointBulletParameters\n",couldNotFind);
4082  return 0;
4083  }
4085  {
4086  printf("%s _simGetOdeMaxContactFrictionCFMandERP\n",couldNotFind);
4087  return 0;
4088  }
4090  {
4091  printf("%s _simGetBulletCollisionMargin\n",couldNotFind);
4092  return 0;
4093  }
4095  {
4096  printf("%s _simGetBulletStickyContact\n",couldNotFind);
4097  return 0;
4098  }
4099  if (_simGetBulletRestitution==0)
4100  {
4101  printf("%s _simGetBulletRestitution\n",couldNotFind);
4102  return 0;
4103  }
4104  if (_simGetVortexParameters==0)
4105  {
4106  printf("%s _simGetVortexParameters\n",couldNotFind);
4107  return 0;
4108  }
4109  if (_simGetNewtonParameters==0)
4110  {
4111  printf("%s _simGetNewtonParameters\n",couldNotFind);
4112  return 0;
4113  }
4114  if (_simGetDamping==0)
4115  {
4116  printf("%s _simGetDamping\n",couldNotFind);
4117  return 0;
4118  }
4119  if (_simGetFriction==0)
4120  {
4121  printf("%s _simGetFriction\n",couldNotFind);
4122  return 0;
4123  }
4124  // Deprecated end
4125 
4126  return 1;
4127 }
4128 
4129 #endif // V_REP_LIBRARY
simInt(__cdecl * ptrSimGetMpConfigForTipPose)(simInt motionPlanningObjectHandle, simInt options, simFloat closeNodesDistance, simInt trialCount, const simFloat *tipPose, simInt maxTimeInMs, simFloat *outputJointPositions, const simFloat *referenceConfigs, simInt referenceConfigCount, const simFloat *jointWeights, const simInt *jointBehaviour, simInt correctionPasses)
Definition: v_repLib.h:1153
ptr_simSetDynamicObjectFlagForVisualization _simSetDynamicObjectFlagForVisualization
Definition: v_repLib.cpp:496
simVoid *(__cdecl * ptrSimGetMainWindow)(simInt type)
Definition: v_repLib.h:63
ptr_simGetMass _simGetMass
Definition: v_repLib.cpp:571
simInt(__cdecl * ptrSimSetObjectName)(simInt objectHandle, const simChar *objectName)
Definition: v_repLib.h:88
simFloat *(__cdecl * ptrSimCheckVisionSensorEx)(simInt visionSensorHandle, simInt entityHandle, simBool returnImage)
Definition: v_repLib.h:357
simInt(__cdecl * ptrSimGetIntegerSignal)(const simChar *signalName, simInt *signalValue)
Definition: v_repLib.h:260
const simVoid *(__cdecl * ptr_simGetObject)(int objID)
Definition: v_repLib.h:524
ptrSimPushStringOntoStack simPushStringOntoStack
Definition: v_repLib.cpp:440
ptr_simSetInitialDynamicAngVelocity _simSetInitialDynamicAngVelocity
Definition: v_repLib.cpp:528
simInt(__cdecl * ptrSimHandleJoint)(simInt jointHandle, simFloat deltaTime)
Definition: v_repLib.h:1168
simInt(__cdecl * ptrSimGetShapeMesh)(simInt shapeHandle, simFloat **vertices, simInt *verticesSize, simInt **indices, simInt *indicesSize, simFloat **normals)
Definition: v_repLib.h:321
ptrSimWriteCustomDataBlock simWriteCustomDataBlock
Definition: v_repLib.cpp:396
simInt(__cdecl * ptrSimPersistentDataWrite)(const simChar *dataName, const simChar *dataValue, simInt dataLength, simInt options)
Definition: v_repLib.h:350
ptrSimAddDrawingObject simAddDrawingObject
Definition: v_repLib.cpp:228
ptrSimResetJoint simResetJoint
Definition: v_repLib.cpp:605
simInt(__cdecl * ptrSimConvexDecompose)(simInt shapeHandle, simInt options, const simInt *intParams, const simFloat *floatParams)
Definition: v_repLib.h:401
ptrSimGetPage simGetPage
Definition: v_repLib.cpp:203
simInt(__cdecl * ptrSimSetVisionSensorCharImage)(simInt visionSensorHandle, const simUChar *image)
Definition: v_repLib.h:362
ptrSimGetSimulatorMessage simGetSimulatorMessage
Definition: v_repLib.cpp:41
simInt(__cdecl * ptrSimClearStringSignal)(const simChar *signalName)
Definition: v_repLib.h:267
ptrSimCreateVisionSensor simCreateVisionSensor
Definition: v_repLib.cpp:310
ptrSimSetUIPosition simSetUIPosition
Definition: v_repLib.cpp:362
simVoid(__cdecl * ptr_simMakeDynamicAnnouncement)(int announceType)
Definition: v_repLib.h:587
simInt(__cdecl * ptrSimCloseScene)()
Definition: v_repLib.h:132
simInt(__cdecl * ptrSimAdjustRealTimeTimer)(simInt instanceIndex, simFloat deltaTime)
Definition: v_repLib.h:205
simInt(__cdecl * ptr_simGetTimeDiffInMs)(simInt previousTime)
Definition: v_repLib.h:594
ptr_simGetContactCallbackCount _simGetContactCallbackCount
Definition: v_repLib.cpp:493
ptrSimRotateAroundAxis simRotateAroundAxis
Definition: v_repLib.cpp:322
ptrSimCreateOctree simCreateOctree
Definition: v_repLib.cpp:470
ptrSimSetJointTargetVelocity simSetJointTargetVelocity
Definition: v_repLib.cpp:212
ptrSimMultiplyMatrices simMultiplyMatrices
Definition: v_repLib.cpp:101
ptrSimLoadModel simLoadModel
Definition: v_repLib.cpp:113
ptrSimAddModuleMenuEntry simAddModuleMenuEntry
Definition: v_repLib.cpp:118
ptrSimGetSimulationPassesPerRenderingPass simGetSimulationPassesPerRenderingPass
Definition: v_repLib.cpp:185
ptrSimGetUIButtonSize simGetUIButtonSize
Definition: v_repLib.cpp:351
simInt(__cdecl * ptrSimGetLinkDummy)(simInt dummyHandle)
Definition: v_repLib.h:290
ptrSimBuildIdentityMatrix simBuildIdentityMatrix
Definition: v_repLib.cpp:96
simInt(__cdecl * ptrSimMoveStackItemToTop)(simInt stackHandle, simInt cIndex)
Definition: v_repLib.h:470
ptr_simHandleJointControl _simHandleJointControl
Definition: v_repLib.cpp:577
simBool(__cdecl * ptr_simIsJointInHybridOperation)(const simVoid *joint)
Definition: v_repLib.h:535
simInt(__cdecl * ptrSimModifyPointCloud)(simInt pointCloudHandle, simInt operation, const simInt *intParam, const simFloat *floatParam)
Definition: v_repLib.h:420
simInt(__cdecl * ptrSimSetIntegerParameter)(simInt parameter, simInt intState)
Definition: v_repLib.h:72
ptrSimGetEngineBoolParameter simGetEngineBoolParameter
Definition: v_repLib.cpp:466
ptrSimRemoveIkGroup simRemoveIkGroup
Definition: v_repLib.cpp:414
simFloat *(__cdecl * ptrSimSimplifyMpPath)(simInt motionPlanningObjectHandle, const simFloat *pathBuffer, simInt configCnt, simInt options, simFloat stepSize, simInt increment, simInt *outputConfigsCnt, simInt maxTimeInMs, simFloat *reserved, const simInt *auxIntParams, const simFloat *auxFloatParams)
Definition: v_repLib.h:1155
void unloadVrepLibrary(LIBRARY lib)
Definition: v_repLib.cpp:641
ptrSimGetStackFloatValue simGetStackFloatValue
Definition: v_repLib.cpp:453
simInt(__cdecl * ptrSimSetUIButtonProperty)(simInt uiHandle, simInt buttonHandle, simInt buttonProperty)
Definition: v_repLib.h:371
simInt(__cdecl * ptrSimSaveScene)(const simChar *filename)
Definition: v_repLib.h:133
simInt(__cdecl * ptrSimGetBooleanParameter)(simInt parameter)
Definition: v_repLib.h:69
ptrSimGetFloatSignal simGetFloatSignal
Definition: v_repLib.cpp:242
ptrSimStartSimulation simStartSimulation
Definition: v_repLib.cpp:187
simInt(__cdecl * ptrSimGetJointInterval)(simInt objectHandle, simBool *cyclic, simFloat *interval)
Definition: v_repLib.h:110
simInt(__cdecl * ptrSimSetUISlider)(simInt uiHandle, simInt buttonHandle, simInt position)
Definition: v_repLib.h:375
ptrSimRemoveMotionPlanning simRemoveMotionPlanning
Definition: v_repLib.cpp:597
ptrSimGetOrientationOnPath simGetOrientationOnPath
Definition: v_repLib.cpp:254
simVoid(__cdecl * ptr_simGetOdeMaxContactFrictionCFMandERP)(const simVoid *geomInfo, simInt *maxContacts, simFloat *friction, simFloat *cfm, simFloat *erp)
Definition: v_repLib.h:1173
ptrSimGetModuleName simGetModuleName
Definition: v_repLib.cpp:191
simInt(__cdecl * ptrSimExportMesh)(simInt fileformat, const simChar *pathAndFilename, simInt options, simFloat scalingFactor, simInt elementCount, simFloat **vertices, const simInt *verticesSizes, simInt **indices, const simInt *indicesSizes, simFloat **reserved, simChar **names)
Definition: v_repLib.h:317
ptrSimComputeMassAndInertia simComputeMassAndInertia
Definition: v_repLib.cpp:431
ptrSimSerialPortClose simSerialPortClose
Definition: v_repLib.cpp:585
simInt(__cdecl * ptrSimSetStringSignal)(const simChar *signalName, const simChar *signalValue, simInt stringLength)
Definition: v_repLib.h:265
ptr_simGetParentFollowsDynamic _simGetParentFollowsDynamic
Definition: v_repLib.cpp:535
ptrSimGetObjectFloatParameter simGetObjectFloatParameter
Definition: v_repLib.cpp:316
simInt(__cdecl * ptrSimGetShapeTriangle)(simInt shapeHandle, simInt groupElementIndex, simInt triangleIndex, simInt *vertexIndices, simFloat *triangleNormals)
Definition: v_repLib.h:280
ptrSimGetObjectAssociatedWithScript simGetObjectAssociatedWithScript
Definition: v_repLib.cpp:147
simInt(__cdecl * ptrSimGetBoolParameter)(simInt parameter)
Definition: v_repLib.h:71
simChar *(__cdecl * ptrSimGetSignalName)(simInt signalIndex, simInt signalType)
Definition: v_repLib.h:268
simInt(__cdecl * ptrSimSetUIProperty)(simInt uiHandle, simInt elementProperty)
Definition: v_repLib.h:369
ptrSimAuxiliaryConsoleClose simAuxiliaryConsoleClose
Definition: v_repLib.cpp:291
const simFloat *(__cdecl * ptr_simGetHeightfieldData)(const simVoid *geometric, simInt *xCount, simInt *yCount, simFloat *minHeight, simFloat *maxHeight)
Definition: v_repLib.h:589
ptr_simGetDummyLinkType _simGetDummyLinkType
Definition: v_repLib.cpp:513
simInt(__cdecl * ptrSimSetEngineBoolParameter)(simInt paramId, simInt objectHandle, const simVoid *object, simBool val)
Definition: v_repLib.h:490
simInt(__cdecl * ptrSimSetJointPosition)(simInt objectHandle, simFloat position)
Definition: v_repLib.h:101
ptr_simIsGeomWrapGeometric _simIsGeomWrapGeometric
Definition: v_repLib.cpp:562
ptrSimCheckVisionSensorEx simCheckVisionSensorEx
Definition: v_repLib.cpp:336
simInt(__cdecl * ptrSimPushBoolOntoStack)(simInt stackHandle, simBool value)
Definition: v_repLib.h:457
simInt(__cdecl * ptrSimCreateDummy)(simFloat size, const simFloat *color)
Definition: v_repLib.h:325
ptrSimSetFloatingParameter simSetFloatingParameter
Definition: v_repLib.cpp:56
simInt(__cdecl * ptrSimSearchPath)(simInt pathPlanningObjectHandle, simFloat maximumSearchTime)
Definition: v_repLib.h:1160
ptrSimGetObjectsInTree simGetObjectsInTree
Definition: v_repLib.cpp:401
ptrSimFindIkPath simFindIkPath
Definition: v_repLib.cpp:595
simInt(__cdecl * ptrSimSetArrayParameter)(simInt parameter, const simVoid *arrayOfValues)
Definition: v_repLib.h:345
ptrSimGetStackDoubleTable simGetStackDoubleTable
Definition: v_repLib.cpp:460
simChar *(__cdecl * ptrSimGetObjectConfiguration)(simInt objectHandle)
Definition: v_repLib.h:197
ptrSimSetScriptSimulationParameter simSetScriptSimulationParameter
Definition: v_repLib.cpp:193
simInt(__cdecl * ptrSimAppendScriptArrayEntry)(const simChar *reservedSetToNull, simInt scriptHandleOrType, const simChar *arrayNameAtScriptName, const simChar *keyName, const simChar *data, const simInt *what)
Definition: v_repLib.h:1169
simInt(__cdecl * ptrSimJointGetForce)(simInt jointHandle, simFloat *forceOrTorque)
Definition: v_repLib.h:1150
simInt(__cdecl * ptrSimCheckVisionSensor)(simInt visionSensorHandle, simInt entityHandle, simFloat **auxValues, simInt **auxValuesCount)
Definition: v_repLib.h:356
simInt(__cdecl * ptrSimGetUIPosition)(simInt uiHandle, simInt *position)
Definition: v_repLib.h:384
ptrSimGetPointCloudOptions simGetPointCloudOptions
Definition: v_repLib.cpp:473
ptrSimSetConfigurationTree simSetConfigurationTree
Definition: v_repLib.cpp:179
ptrSimSimplifyMpPath simSimplifyMpPath
Definition: v_repLib.cpp:593
simInt(__cdecl * ptrSimTransformVector)(const simFloat *matrix, simFloat *vect)
Definition: v_repLib.h:124
simInt(__cdecl * ptrSimSetObjectSizeValues)(simInt objectHandle, const simFloat *sizeValues)
Definition: v_repLib.h:423
simBool(__cdecl * ptr_simGetBulletCollisionMargin)(const simVoid *geomInfo, simFloat *margin, simInt *otherProp)
Definition: v_repLib.h:1174
simInt(__cdecl * ptrSimRemoveParticleObject)(simInt objectHandle)
Definition: v_repLib.h:253
simVoid(__cdecl * ptr_simAddJointCumulativeForcesOrTorques)(simVoid *joint, simFloat forceOrTorque, int totalPassesCount)
Definition: v_repLib.h:574
ptrSimImportMesh simImportMesh
Definition: v_repLib.cpp:295
simInt(__cdecl * ptrSimScaleObjects)(const simFloat *objectHandles, simInt objectCount, simFloat scalingFactor, simBool scalePositionsToo)
Definition: v_repLib.h:241
simInt(__cdecl * ptrSimGetShapeColor)(simInt shapeHandle, const simChar *colorName, simInt colorComponent, simFloat *rgbData)
Definition: v_repLib.h:295
simInt(__cdecl * ptrSimResetMill)(simInt millHandle)
Definition: v_repLib.h:182
ptrSimResetGraph simResetGraph
Definition: v_repLib.cpp:199
ptr_simGetCumulativeMeshes _simGetCumulativeMeshes
Definition: v_repLib.cpp:570
ptrSimCreateCollection simCreateCollection
Definition: v_repLib.cpp:416
simInt(__cdecl * ptrSimGetObjectUniqueIdentifier)(simInt objectHandle, simInt *uniqueIdentifier)
Definition: v_repLib.h:243
simInt(__cdecl * ptrSimResetPath)(simInt pathHandle)
Definition: v_repLib.h:1165
ptrSimReleaseStack simReleaseStack
Definition: v_repLib.cpp:433
simInt(__cdecl * ptrSimEndDialog)(simInt genericDialogHandle)
Definition: v_repLib.h:228
ptrSimHandleVisionSensor simHandleVisionSensor
Definition: v_repLib.cpp:332
simInt(__cdecl * ptrSimGetModelProperty)(simInt objectHandle)
Definition: v_repLib.h:293
simInt(__cdecl * ptrSimAddObjectCustomData)(simInt objectHandle, simInt header, const simChar *data, simInt dataLength)
Definition: v_repLib.h:189
simInt(__cdecl * ptrSimGetShapeTextureId)(simInt shapeHandle)
Definition: v_repLib.h:427
simInt(__cdecl * ptr_simGetObjectID)(const simVoid *object)
Definition: v_repLib.h:519
ptrSimRemoveObject simRemoveObject
Definition: v_repLib.cpp:63
ptr_simGetDynamicMotorMaxForce _simGetDynamicMotorMaxForce
Definition: v_repLib.cpp:549
ptr_simGetShapeIsStaticAndNotRespondableButDynamicTag _simGetShapeIsStaticAndNotRespondableButDynamicTag
Definition: v_repLib.cpp:521
ptrSimAdjustView simAdjustView
Definition: v_repLib.cpp:196
ptrSimRMLRemove simRMLRemove
Definition: v_repLib.cpp:371
ptrSimGetSimulationTime simGetSimulationTime
Definition: v_repLib.cpp:105
ptrSimAuxiliaryConsolePrint simAuxiliaryConsolePrint
Definition: v_repLib.cpp:293
simInt(__cdecl * ptrSimInsertPathCtrlPoints)(simInt pathHandle, simInt options, simInt startIndex, simInt ptCnt, const simVoid *ptData)
Definition: v_repLib.h:330
ptr_simGetJointBulletParameters _simGetJointBulletParameters
Definition: v_repLib.cpp:610
simInt(__cdecl * ptrSimInsertObjectIntoPointCloud)(simInt pointCloudHandle, simInt objectHandle, simInt options, simFloat gridSize, const simUChar *color, simVoid *optionalValues)
Definition: v_repLib.h:504
simInt(__cdecl * ptrSimSetConfigurationTree)(const simChar *data)
Definition: v_repLib.h:200
ptrSimGetUIEventButton simGetUIEventButton
Definition: v_repLib.cpp:347
ptrSimAnnounceSceneContentChange simAnnounceSceneContentChange
Definition: v_repLib.cpp:235
simVoid(__cdecl * ptr_simGetInitialDynamicVelocity)(const simVoid *shape, simFloat *vel)
Definition: v_repLib.h:545
simInt(__cdecl * ptrSimGetIntegerParameter)(simInt parameter, simInt *intState)
Definition: v_repLib.h:73
ptrSimSaveModel simSaveModel
Definition: v_repLib.cpp:114
simInt(__cdecl * ptrSimGetStackFloatValue)(simInt stackHandle, simFloat *numberValue)
Definition: v_repLib.h:474
ptr_simGetObject _simGetObject
Definition: v_repLib.cpp:504
ptrSimLoadImage simLoadImage
Definition: v_repLib.cpp:419
simInt(__cdecl * ptrSimResetCollision)(simInt collisionObjectHandle)
Definition: v_repLib.h:179
simInt(__cdecl * ptrSimSetSimulationTimeStep)(simFloat timeStep)
Definition: v_repLib.h:201
const simVoid *(__cdecl * ptr_simGetLastParentForLocalGlobalCollidable)(const simVoid *shape)
Definition: v_repLib.h:539
simInt(__cdecl * ptrSimSetBooleanParameter)(simInt parameter, simBool boolState)
Definition: v_repLib.h:68
ptr_simGetHeightfieldData _simGetHeightfieldData
Definition: v_repLib.cpp:569
simInt(__cdecl * ptrSimReleaseBuffer)(simChar *buffer)
Definition: v_repLib.h:193
ptr_simGetContactCallback _simGetContactCallback
Definition: v_repLib.cpp:494
ptrSimGetJointPosition simGetJointPosition
Definition: v_repLib.cpp:79
ptrSimGetRealTimeSimulation simGetRealTimeSimulation
Definition: v_repLib.cpp:182
ptrSimSaveImage simSaveImage
Definition: v_repLib.cpp:418
ptrSimResetPath simResetPath
Definition: v_repLib.cpp:603
ptrSimTubeClose simTubeClose
Definition: v_repLib.cpp:286
ptrSimGetLinkDummy simGetLinkDummy
Definition: v_repLib.cpp:269
ptrSimReorientShapeBoundingBox simReorientShapeBoundingBox
Definition: v_repLib.cpp:411
simInt(__cdecl * ptrSimGetDecimatedMesh)(const simFloat *inVertices, simInt inVerticesL, const simInt *inIndices, simInt inIndicesL, simFloat **verticesOut, simInt *verticesOutL, simInt **indicesOut, simInt *indicesOutL, simFloat decimationPercent, simInt reserved1, const simFloat *reserved2)
Definition: v_repLib.h:444
simInt(__cdecl * ptrSimGetClosestPositionOnPath)(simInt pathHandle, simFloat *absolutePosition, simFloat *pathPosition)
Definition: v_repLib.h:276
simInt(__cdecl * ptrSimSetFloatParameter)(simInt parameter, simFloat floatState)
Definition: v_repLib.h:79
simInt(__cdecl * ptr_simHandleCustomContact)(simInt objHandle1, simInt objHandle2, simInt engine, simInt *dataInt, simFloat *dataFloat)
Definition: v_repLib.h:598
simInt(__cdecl * ptrSimSetObjectSpecialProperty)(simInt objectHandle, simInt prop)
Definition: v_repLib.h:271
ptrSimTransformImage simTransformImage
Definition: v_repLib.cpp:421
ptrSimSetObjectMatrix simSetObjectMatrix
Definition: v_repLib.cpp:74
ptrSimCreateStack simCreateStack
Definition: v_repLib.cpp:432
simInt(__cdecl * ptrSimGetPage)()
Definition: v_repLib.h:224
simChar *(__cdecl * ptrSimGetConfigurationTree)(simInt objectHandle)
Definition: v_repLib.h:199
simInt(__cdecl * ptrSimSetLastError)(const simChar *funcName, const simChar *errorMessage)
Definition: v_repLib.h:218
simInt(__cdecl * ptr_simGetDynamicCollisionMask)(const simVoid *shape)
Definition: v_repLib.h:538
simInt(__cdecl * ptrSimIsHandleValid)(simInt generalObjectHandle, simInt generalObjectType)
Definition: v_repLib.h:352
simInt(__cdecl * ptrSimRemoveModel)(simInt objectHandle)
Definition: v_repLib.h:85
simUChar *(__cdecl * ptrSimGetScaledImage)(const simUChar *imageIn, const simInt *resolutionIn, simInt *resolutionOut, simInt options, simVoid *reserved)
Definition: v_repLib.h:441
simInt(__cdecl * ptrSimSetThreadIsFree)(simBool freeMode)
Definition: v_repLib.h:305
const simVoid **(__cdecl * ptr_simGetObjectChildren)(const simVoid *object, simInt *count)
Definition: v_repLib.h:521
simInt(__cdecl * ptrSimReadVisionSensor)(simInt visionSensorHandle, simFloat **auxValues, simInt **auxValuesCount)
Definition: v_repLib.h:354
simInt(__cdecl * ptr_simGetObjectListSize)(simInt objType)
Definition: v_repLib.h:517
simInt(__cdecl * ptrSimCheckProximitySensorEx2)(simInt sensorHandle, simFloat *vertexPointer, simInt itemType, simInt itemCount, simInt detectionMode, simFloat detectionThreshold, simFloat maxAngle, simFloat *detectedPoint, simFloat *normalVector)
Definition: v_repLib.h:185
simInt(__cdecl * ptrSimSetStringParameter)(simInt parameter, const simChar *stringState)
Definition: v_repLib.h:81
ptr_simGetDynamicCollisionMask _simGetDynamicCollisionMask
Definition: v_repLib.cpp:518
ptrSimSetEngineFloatParameter simSetEngineFloatParameter
Definition: v_repLib.cpp:467
ptrSimGetStackSize simGetStackSize
Definition: v_repLib.cpp:447
simInt(__cdecl * ptrSimRemoveUI)(simInt uiHandle)
Definition: v_repLib.h:382
simInt(__cdecl * ptrSimAddModuleMenuEntry)(const simChar *entryLabel, simInt itemCount, simInt *itemHandles)
Definition: v_repLib.h:139
ptrSimRefreshDialogs simRefreshDialogs
Definition: v_repLib.cpp:154
ptr_simGetPrincipalMomentOfInertia _simGetPrincipalMomentOfInertia
Definition: v_repLib.cpp:572
simInt(__cdecl * ptrSimResetDynamicObject)(simInt objectHandle)
Definition: v_repLib.h:296
simInt(__cdecl * ptrSimGetStackSize)(simInt stackHandle)
Definition: v_repLib.h:468
simInt(__cdecl * ptrSimSetObjectFloatParameter)(simInt objectHandle, simInt parameterID, simFloat parameter)
Definition: v_repLib.h:338
simChar *(__cdecl * ptrSimGetStringParameter)(simInt parameter)
Definition: v_repLib.h:82
ptrSimCreateDummy simCreateDummy
Definition: v_repLib.cpp:304
simInt(__cdecl * ptrSimCreateMotionPlanning)(simInt jointCnt, const simInt *jointHandles, const simInt *jointRangeSubdivisions, const simFloat *jointMetricWeights, simInt options, const simInt *intParams, const simFloat *floatParams, const simVoid *reserved)
Definition: v_repLib.h:1158
simInt(__cdecl * ptrSimGetQuaternionFromMatrix)(const simFloat *matrix, simFloat *quaternion)
Definition: v_repLib.h:394
ptrSimSerialSend simSerialSend
Definition: v_repLib.cpp:280
ptrSimAddScript simAddScript
Definition: v_repLib.cpp:152
ptrSimPushInt32OntoStack simPushInt32OntoStack
Definition: v_repLib.cpp:437
simInt(__cdecl * ptrSimGetObjectQuaternion)(simInt objectHandle, simInt relativeToObjectHandle, simFloat *quaternion)
Definition: v_repLib.h:385
ptrSimApplyMilling simApplyMilling
Definition: v_repLib.cpp:237
simInt(__cdecl * ptrSimDeleteUIButtonArray)(simInt uiHandle, simInt buttonHandle)
Definition: v_repLib.h:381
simVoid(__cdecl * ptr_simSetDynamicMotorReflectedPositionFromDynamicEngine)(simVoid *joint, simFloat pos)
Definition: v_repLib.h:571
ptrSimGetPathPlanningHandle simGetPathPlanningHandle
Definition: v_repLib.cpp:589
simInt(__cdecl * ptrSimPushDoubleTableOntoStack)(simInt stackHandle, const simDouble *values, simInt valueCnt)
Definition: v_repLib.h:465
ptrSimGetObjectUniqueIdentifier simGetObjectUniqueIdentifier
Definition: v_repLib.cpp:222
ptrSimLoadModule simLoadModule
Definition: v_repLib.cpp:44
simInt(__cdecl * ptrSimGetQHull)(const simFloat *inVertices, simInt inVerticesL, simFloat **verticesOut, simInt *verticesOutL, simInt **indicesOut, simInt *indicesOutL, simInt reserved1, const simFloat *reserved2)
Definition: v_repLib.h:443
simInt(__cdecl * ptrSimPopStackItem)(simInt stackHandle, simInt count)
Definition: v_repLib.h:469
simInt(__cdecl * ptrSimResetDistance)(simInt distanceObjectHandle)
Definition: v_repLib.h:180
ptrSimRMLPos simRMLPos
Definition: v_repLib.cpp:368
simInt(__cdecl * ptrSimAddScript)(simInt scriptProperty)
Definition: v_repLib.h:173
ptrSimSetJointForce simSetJointForce
Definition: v_repLib.cpp:83
ptr_simHandleCustomContact _simHandleCustomContact
Definition: v_repLib.cpp:578
ptrSimRemoveVoxelsFromOctree simRemoveVoxelsFromOctree
Definition: v_repLib.cpp:475
ptrSimGetOctreeVoxels simGetOctreeVoxels
Definition: v_repLib.cpp:479
simInt(__cdecl * ptrSimTubeWrite)(simInt tubeHandle, const simChar *data, simInt dataLength)
Definition: v_repLib.h:308
simInt(__cdecl * ptrSimAddStatusbarMessage)(const simChar *message)
Definition: v_repLib.h:138
simInt(__cdecl * ptrSimBreakForceSensor)(simInt objectHandle)
Definition: v_repLib.h:278
simInt(__cdecl * ptrSimSetLinkDummy)(simInt dummyHandle, simInt linkedDummyHandle)
Definition: v_repLib.h:291
ptrSimGetIkGroupHandle simGetIkGroupHandle
Definition: v_repLib.cpp:157
ptrSimGetUIPosition simGetUIPosition
Definition: v_repLib.cpp:363
ptrSimCloseScene simCloseScene
Definition: v_repLib.cpp:111
ptrSimGetJointMode simGetJointMode
Definition: v_repLib.cpp:277
ptr_simGetBulletStickyContact _simGetBulletStickyContact
Definition: v_repLib.cpp:613
simInt(__cdecl * ptrSimSetUIButtonLabel)(simInt uiHandle, simInt buttonHandle, const simChar *upStateLabel, const simChar *downStateLabel)
Definition: v_repLib.h:373
simInt(__cdecl * ptrSimSaveImage)(const simUChar *image, const simInt *resolution, simInt options, const simChar *filename, simInt quality, simVoid *reserved)
Definition: v_repLib.h:439
ptrSimReadTexture simReadTexture
Definition: v_repLib.cpp:393
ptrSimGetObjectSizeValues simGetObjectSizeValues
Definition: v_repLib.cpp:403
simInt(__cdecl * ptrSimSetInt32Parameter)(simInt parameter, simInt intState)
Definition: v_repLib.h:74
ptrSimSetNavigationMode simSetNavigationMode
Definition: v_repLib.cpp:200
simInt(__cdecl * ptrSimGetCollisionHandle)(const simChar *collisionObjectName)
Definition: v_repLib.h:176
simInt(__cdecl * ptrSimGetExplicitHandling)(simInt generalObjectHandle)
Definition: v_repLib.h:289
simInt(__cdecl * ptrSimCreateUI)(const simChar *uiName, simInt menuAttributes, const simInt *clientSize, const simInt *cellSize, simInt *buttonHandles)
Definition: v_repLib.h:364
simFloat *(__cdecl * ptrSimGetMpConfigTransition)(simInt motionPlanningObjectHandle, const simFloat *startConfig, const simFloat *goalConfig, simInt options, const simInt *select, simFloat calcStepSize, simFloat maxOutStepSize, simInt wayPointCnt, const simFloat *wayPoints, simInt *outputConfigsCnt, const simInt *auxIntParams, const simFloat *auxFloatParams)
Definition: v_repLib.h:1157
ptrSimGetIntegerParameter simGetIntegerParameter
Definition: v_repLib.cpp:52
simInt(__cdecl * ptrSimGetJointMatrix)(simInt objectHandle, simFloat *matrix)
Definition: v_repLib.h:108
ptrSimReadCollision simReadCollision
Definition: v_repLib.cpp:128
ptrSimInsertObjectIntoPointCloud simInsertObjectIntoPointCloud
Definition: v_repLib.cpp:483
ptrSimJointGetForce simJointGetForce
Definition: v_repLib.cpp:588
simInt(__cdecl * ptrSimDoesFileExist)(const simChar *filename)
Definition: v_repLib.h:141
ptrSimCreateHeightfieldShape simCreateHeightfieldShape
Definition: v_repLib.cpp:299
simInt(__cdecl * ptrSimRemoveMotionPlanning)(simInt motionPlanningHandle)
Definition: v_repLib.h:1159
ptr_simGetObjectChildren _simGetObjectChildren
Definition: v_repLib.cpp:501
simInt(__cdecl * ptrSimGetObjectPosition)(simInt objectHandle, simInt relativeToObjectHandle, simFloat *position)
Definition: v_repLib.h:96
ptrSimSetObjectInt32Parameter simSetObjectInt32Parameter
Definition: v_repLib.cpp:315
simFloat(__cdecl * ptr_simGetDynamicMotorUpperLimitVelocity)(const simVoid *joint)
Definition: v_repLib.h:570
simInt(__cdecl * ptrSimGetStackTableInfo)(simInt stackHandle, simInt infoType)
Definition: v_repLib.h:477
ptrSimAddDrawingObjectItem simAddDrawingObjectItem
Definition: v_repLib.cpp:230
simInt(__cdecl * ptrSimHandleMill)(simInt millHandle, simFloat *removedSurfaceAndVolume)
Definition: v_repLib.h:154
ptr_simGetParentObject _simGetParentObject
Definition: v_repLib.cpp:503
simInt(__cdecl * ptrSimCreatePointCloud)(simFloat maxVoxelSize, simInt maxPtCntPerVoxel, simInt options, simFloat pointSize, simVoid *reserved)
Definition: v_repLib.h:492
simInt(__cdecl * ptrSimCreateVisionSensor)(simInt options, const simInt *intParams, const simFloat *floatParams, const simFloat *color)
Definition: v_repLib.h:327
simInt(__cdecl * ptrSimGetIkGroupHandle)(const simChar *ikGroupName)
Definition: v_repLib.h:178
simInt(__cdecl * ptrSimPerformPathSearchStep)(simInt temporaryPathSearchObject, simBool abortSearch)
Definition: v_repLib.h:1162
ptrSimSetUIButtonLabel simSetUIButtonLabel
Definition: v_repLib.cpp:352
ptrSimGetMotionPlanningHandle simGetMotionPlanningHandle
Definition: v_repLib.cpp:590
simInt(__cdecl * ptrSimRegisterScriptVariable)(const simChar *varName, const simChar *varValue, simInt stackHandle)
Definition: v_repLib.h:232
simInt(__cdecl * ptrSimSerialOpen)(const simChar *portString, simInt baudRate, simVoid *reserved1, simVoid *reserved2)
Definition: v_repLib.h:299
ptrSimPushNullOntoStack simPushNullOntoStack
Definition: v_repLib.cpp:435
ptrSimTransformVector simTransformVector
Definition: v_repLib.cpp:103
ptrSimGenerateIkPath simGenerateIkPath
Definition: v_repLib.cpp:429
ptr_simAddForceSensorCumulativeForcesAndTorques _simAddForceSensorCumulativeForcesAndTorques
Definition: v_repLib.cpp:553
simInt(__cdecl * ptrSimSetPage)(simInt index)
Definition: v_repLib.h:223
ptrSimGetShapeColor simGetShapeColor
Definition: v_repLib.cpp:274
simInt(__cdecl * ptrSimGetCollectionHandle)(const simChar *collectionName)
Definition: v_repLib.h:89
ptrSimSetUIButtonArrayColor simSetUIButtonArrayColor
Definition: v_repLib.cpp:359
simFloat(__cdecl * ptrSimGetSimulationTimeStep)()
Definition: v_repLib.h:202
simInt(__cdecl * ptrSimPushNullOntoStack)(simInt stackHandle)
Definition: v_repLib.h:456
ptrSimGetObjectProperty simGetObjectProperty
Definition: v_repLib.cpp:249
ptrSimFindMpPath simFindMpPath
Definition: v_repLib.cpp:592
ptrSimSetSimulationTimeStep simSetSimulationTimeStep
Definition: v_repLib.cpp:180
simInt(__cdecl * ptrSimRunSimulator)(const simChar *applicationName, simInt options, simVoid(*initCallBack)(), simVoid(*loopCallBack)(), simVoid(*deinitCallBack)())
Definition: v_repLib.h:61
simInt(__cdecl * ptrSimPushStringOntoStack)(simInt stackHandle, const simChar *value, simInt stringSize)
Definition: v_repLib.h:461
ptrSimStopSimulation simStopSimulation
Definition: v_repLib.cpp:188
ptrSimRemoveModel simRemoveModel
Definition: v_repLib.cpp:64
ptrSimAddParticleObjectItem simAddParticleObjectItem
Definition: v_repLib.cpp:233
simInt(__cdecl * ptrSimGetPositionOnPath)(simInt pathHandle, simFloat relativeDistance, simFloat *position)
Definition: v_repLib.h:273
simInt(__cdecl * ptrSimSubtractObjectFromOctree)(simInt octreeHandle, simInt objectHandle, simInt options, simVoid *reserved)
Definition: v_repLib.h:503
ptr_simIsGeomWrapConvex _simIsGeomWrapConvex
Definition: v_repLib.cpp:563
simVoid(__cdecl * ptr_simSetInitialDynamicAngVelocity)(simVoid *shape, const simFloat *angularVel)
Definition: v_repLib.h:548
ptr_simGetInitialDynamicAngVelocity _simGetInitialDynamicAngVelocity
Definition: v_repLib.cpp:527
const float *(__cdecl * ptrSimGetOctreeVoxels)(simInt octreeHandle, simInt *ptCnt, simVoid *reserved)
Definition: v_repLib.h:500
ptrSimGetLightParameters simGetLightParameters
Definition: v_repLib.cpp:261
simBool(__cdecl * ptr_simIsGeomWrapConvex)(const simVoid *geomInfo)
Definition: v_repLib.h:583
ptrSimSetObjectSizeValues simSetObjectSizeValues
Definition: v_repLib.cpp:402
simInt(__cdecl * ptrSimGetPathPosition)(simInt objectHandle, simFloat *position)
Definition: v_repLib.h:105
ptrSimSetScriptAttribute simSetScriptAttribute
Definition: v_repLib.cpp:409
ptrSimGroupShapes simGroupShapes
Definition: v_repLib.cpp:378
simInt(__cdecl * ptrSimGetInt32Parameter)(simInt parameter, simInt *intState)
Definition: v_repLib.h:75
simInt(__cdecl * ptrSimResetProximitySensor)(simInt sensorHandle)
Definition: v_repLib.h:181
ptrSimTubeRead simTubeRead
Definition: v_repLib.cpp:288
simInt(__cdecl * ptrSimCreateCollection)(const simChar *collectionName, simInt options)
Definition: v_repLib.h:437
simBool(__cdecl * ptr_simGetJointPositionInterval)(const simVoid *joint, simFloat *minValue, simFloat *rangeValue)
Definition: v_repLib.h:559
simInt(__cdecl * ptrSimRMLPosition)(simInt dofs, simDouble timeStep, simInt flags, const simDouble *currentPosVelAccel, const simDouble *maxVelAccelJerk, const simBool *selection, const simDouble *targetPosVel, simDouble *newPosVelAccel, simVoid *auxData)
Definition: v_repLib.h:387
simInt(__cdecl * ptrSimSetJointInterval)(simInt objectHandle, simBool cyclic, const simFloat *interval)
Definition: v_repLib.h:111
ptrSimBuildMatrixQ simBuildMatrixQ
Definition: v_repLib.cpp:372
ptrSimAddGhost simAddGhost
Definition: v_repLib.cpp:382
ptrSimDisplayDialog simDisplayDialog
Definition: v_repLib.cpp:204
simInt(__cdecl * ptr_simGetObjectType)(const simVoid *object)
Definition: v_repLib.h:520
ptrSimAdjustRealTimeTimer simAdjustRealTimeTimer
Definition: v_repLib.cpp:184
simInt(__cdecl * ptrSimBuildIdentityMatrix)(simFloat *matrix)
Definition: v_repLib.h:117
ptr_simSetInitialDynamicVelocity _simSetInitialDynamicVelocity
Definition: v_repLib.cpp:526
ptrSimGetNameSuffix simGetNameSuffix
Definition: v_repLib.cpp:223
ptrSimSetFloatParameter simSetFloatParameter
Definition: v_repLib.cpp:58
simInt(__cdecl * ptrSimUnlockResources)(simInt lockHandle)
Definition: v_repLib.h:408
ptrSimGetVisionSensorDepthBuffer simGetVisionSensorDepthBuffer
Definition: v_repLib.cpp:342
simInt(__cdecl * ptrSimGetJointForce)(simInt jointHandle, simFloat *forceOrTorque)
Definition: v_repLib.h:344
ptr_simSetDynamicJointLocalTransformationPart2IsValid _simSetDynamicJointLocalTransformationPart2IsValid
Definition: v_repLib.cpp:557
ptrSimPushInt32TableOntoStack simPushInt32TableOntoStack
Definition: v_repLib.cpp:442
ptr_simSetDynamicMotorPositionControlTargetPosition _simSetDynamicMotorPositionControlTargetPosition
Definition: v_repLib.cpp:524
simVoid(__cdecl * ptr_simAddForceSensorCumulativeForcesAndTorques)(simVoid *forceSensor, const simFloat *force, const simFloat *torque, int totalPassesCount)
Definition: v_repLib.h:573
ptrSimCallScriptFunctionEx simCallScriptFunctionEx
Definition: v_repLib.cpp:426
ptrSimHandleGraph simHandleGraph
Definition: v_repLib.cpp:198
simInt(__cdecl * ptrSimCopyMatrix)(const simFloat *matrixIn, simFloat *matrixOut)
Definition: v_repLib.h:118
ptrSimHandleVarious simHandleVarious
Definition: v_repLib.cpp:262
simVoid(__cdecl * ptr_simGetPrincipalMomentOfInertia)(const simVoid *geomInfo, simFloat *inertia)
Definition: v_repLib.h:592
simInt(__cdecl * ptrSimGetSceneCustomData)(simInt header, simChar *data)
Definition: v_repLib.h:188
ptrSimGetScriptHandle simGetScriptHandle
Definition: v_repLib.cpp:139
ptr_simGetBulletRestitution _simGetBulletRestitution
Definition: v_repLib.cpp:614
ptrSimCopyMatrix simCopyMatrix
Definition: v_repLib.cpp:97
simVoid(__cdecl * ptr_simSetDynamicForceSensorLocalTransformationPart2)(simVoid *forceSensor, const simFloat *pos, const simFloat *quat)
Definition: v_repLib.h:576
ptrSimRunSimulator simRunSimulator
Definition: v_repLib.cpp:40
simFloat(__cdecl * ptr_simGetFriction)(const simVoid *geomInfo)
Definition: v_repLib.h:1180
ptrSimUnlockResources simUnlockResources
Definition: v_repLib.cpp:387
ptrSimClearStringSignal simClearStringSignal
Definition: v_repLib.cpp:246
simInt(__cdecl * ptrSimGetObjectSpecialProperty)(simInt objectHandle)
Definition: v_repLib.h:272
ptrSimGetSystemTimeInMs simGetSystemTimeInMs
Definition: v_repLib.cpp:109
ptrSimGetShapeGeomInfo simGetShapeGeomInfo
Definition: v_repLib.cpp:400
simInt(__cdecl * ptrSimSetCollectionName)(simInt collectionHandle, const simChar *collectionName)
Definition: v_repLib.h:93
simInt(__cdecl * ptrSimSetScriptRawBuffer)(simInt scriptHandle, const simChar *buffer, simInt bufferSize)
Definition: v_repLib.h:237
ptrSimHandleIkGroup simHandleIkGroup
Definition: v_repLib.cpp:134
ptr_simSetDynamicForceSensorLocalTransformationPart2IsValid _simSetDynamicForceSensorLocalTransformationPart2IsValid
Definition: v_repLib.cpp:558
simInt(__cdecl * ptrSimRemoveObject)(simInt objectHandle)
Definition: v_repLib.h:84
simInt(__cdecl * ptrSimCopyStack)(simInt stackHandle)
Definition: v_repLib.h:455
ptrSimExportMesh simExportMesh
Definition: v_repLib.cpp:296
simInt(__cdecl * ptrSimGetShapeGeomInfo)(simInt shapeHandle, simInt *intData, simFloat *floatData, simVoid *reserved)
Definition: v_repLib.h:421
ptrSimSetShapeMassAndInertia simSetShapeMassAndInertia
Definition: v_repLib.cpp:376
ptrSimRemoveDrawingObject simRemoveDrawingObject
Definition: v_repLib.cpp:229
ptrSimSetShapeMaterial simSetShapeMaterial
Definition: v_repLib.cpp:390
ptr_simGetObjectID _simGetObjectID
Definition: v_repLib.cpp:499
simInt(__cdecl * ptrSimGetObjectSelection)(simInt *objectHandles)
Definition: v_repLib.h:147
simInt(__cdecl * ptrSimGetStackUInt8Table)(simInt stackHandle, simUChar *array, simInt count)
Definition: v_repLib.h:478
simInt *(__cdecl * ptrSimGetObjectsInTree)(simInt treeBaseHandle, simInt objectType, simInt options, simInt *objectCount)
Definition: v_repLib.h:422
ptrSimGetVelocity simGetVelocity
Definition: v_repLib.cpp:263
simInt(__cdecl * ptrSimGetScriptAssociatedWithObject)(simInt objectHandle)
Definition: v_repLib.h:166
ptrSimSaveScene simSaveScene
Definition: v_repLib.cpp:112
simInt(__cdecl * ptrSimCallScriptFunction)(simInt scriptHandleOrType, const simChar *functionNameAtScriptName, SLuaCallBack *data, const simChar *reservedSetToNull)
Definition: v_repLib.h:446
simInt(__cdecl * ptrSimApplyMilling)(simInt objectHandle)
Definition: v_repLib.h:258
simVoid(__cdecl * ptr_simSetShapeIsStaticAndNotRespondableButDynamicTag)(const simVoid *shape, simBool tag)
Definition: v_repLib.h:540
simInt(__cdecl * ptrSimAddForce)(simInt shapeHandle, const simFloat *position, const simFloat *force)
Definition: v_repLib.h:287
ptrSimGetShapeVertex simGetShapeVertex
Definition: v_repLib.cpp:258
simInt(__cdecl * ptrSimResetMilling)(simInt objectHandle)
Definition: v_repLib.h:257
ptrSimGetStackDoubleValue simGetStackDoubleValue
Definition: v_repLib.cpp:454
const simVoid *(__cdecl * ptr_simGetObjectFromIndex)(simInt objType, simInt index)
Definition: v_repLib.h:518
simInt(__cdecl * ptrSimHandleCustomizationScripts)(simInt callType)
Definition: v_repLib.h:429
simInt(__cdecl * ptrSimDeleteSelectedObjects)()
Definition: v_repLib.h:242
ptrSimScaleSelectedObjects simScaleSelectedObjects
Definition: v_repLib.cpp:219
ptr_simSetObjectLocalTransformation _simSetObjectLocalTransformation
Definition: v_repLib.cpp:508
ptrSimRegisterScriptVariable simRegisterScriptVariable
Definition: v_repLib.cpp:211
ptrSimIntersectPointsWithPointCloud simIntersectPointsWithPointCloud
Definition: v_repLib.cpp:478
ptr_simDisableDynamicTreeForManipulation _simDisableDynamicTreeForManipulation
Definition: v_repLib.cpp:516
ptrSimGetObjectVelocity simGetObjectVelocity
Definition: v_repLib.cpp:264
ptrSimSubtractObjectFromPointCloud simSubtractObjectFromPointCloud
Definition: v_repLib.cpp:484
ptrSimRemoveBanner simRemoveBanner
Definition: v_repLib.cpp:302
simInt(__cdecl * ptrSimLoadModule)(const simChar *filenameAndPath, const simChar *pluginName)
Definition: v_repLib.h:65
simBool(__cdecl * ptr_simGetStartSleeping)(const simVoid *shape)
Definition: v_repLib.h:549
ptrSimGetObjectIntParameter simGetObjectIntParameter
Definition: v_repLib.cpp:312
simInt(__cdecl * ptrSimPushTableOntoStack)(simInt stackHandle)
Definition: v_repLib.h:466
simInt(__cdecl * ptrSimCheckCollision)(simInt entity1Handle, simInt entity2Handle)
Definition: v_repLib.h:194
simInt(__cdecl * ptrSimBuildMatrixQ)(const simFloat *position, const simFloat *quaternion, simFloat *matrix)
Definition: v_repLib.h:393
simInt(__cdecl * ptrSimEmptyCollection)(simInt collectionHandle)
Definition: v_repLib.h:91
ptr_simSetDynamicMotorReflectedPositionFromDynamicEngine _simSetDynamicMotorReflectedPositionFromDynamicEngine
Definition: v_repLib.cpp:551
ptr_simGetPureHollowScaling _simGetPureHollowScaling
Definition: v_repLib.cpp:579
ptrSimGetObjectOrientation simGetObjectOrientation
Definition: v_repLib.cpp:77
const simVoid *(__cdecl * ptr_simGetGeomProxyFromShape)(const simVoid *shape)
Definition: v_repLib.h:522
simInt(__cdecl * ptrSimGetObjectChild)(simInt objectHandle, simInt index)
Definition: v_repLib.h:113
simInt(__cdecl * ptrSimSerialPortOpen)(simInt portNumber, simInt baudRate, simVoid *reserved1, simVoid *reserved2)
Definition: v_repLib.h:1146
simBool(__cdecl * ptr_simIsShapeDynamicallyRespondable)(const simVoid *shape)
Definition: v_repLib.h:537
simInt(__cdecl * ptrSimSerialSend)(simInt portHandle, const simChar *data, simInt dataLength)
Definition: v_repLib.h:301
ptrSimSetEngineInt32Parameter simSetEngineInt32Parameter
Definition: v_repLib.cpp:468
ptrSimAddParticleObject simAddParticleObject
Definition: v_repLib.cpp:231
ptrSimGetArrayParameter simGetArrayParameter
Definition: v_repLib.cpp:325
simInt(__cdecl * ptrSimSetModuleMenuItemState)(simInt itemHandle, simInt state, const simChar *label)
Definition: v_repLib.h:140
simInt(__cdecl * ptrSimSetObjectMatrix)(simInt objectHandle, simInt relativeToObjectHandle, const simFloat *matrix)
Definition: v_repLib.h:95
ptrSimCreateMeshShape simCreateMeshShape
Definition: v_repLib.cpp:297
ptrSimAddBanner simAddBanner
Definition: v_repLib.cpp:301
ptrSimSetObjectOrientation simSetObjectOrientation
Definition: v_repLib.cpp:78
simVoid(__cdecl * ptr_simGetNewtonParameters)(const simVoid *object, simInt *version, simFloat *floatParams, simInt *intParams)
Definition: v_repLib.h:1178
ptrSimHandleDistance simHandleDistance
Definition: v_repLib.cpp:129
simUChar *(__cdecl * ptrSimLoadImage)(simInt *resolution, simInt options, const simChar *filename, simVoid *reserved)
Definition: v_repLib.h:440
ptrSimGetBooleanParameter simGetBooleanParameter
Definition: v_repLib.cpp:48
simVoid(__cdecl * ptr_simSetDynamicJointLocalTransformationPart2IsValid)(simVoid *joint, simBool valid)
Definition: v_repLib.h:577
ptrSimCreatePath simCreatePath
Definition: v_repLib.cpp:306
ptr_simGetLocalInertiaFrame _simGetLocalInertiaFrame
Definition: v_repLib.cpp:560
ptrSimCutPathCtrlPoints simCutPathCtrlPoints
Definition: v_repLib.cpp:308
simInt(__cdecl * ptrSimGetStackDoubleTable)(simInt stackHandle, simDouble *array, simInt count)
Definition: v_repLib.h:481
simInt(__cdecl * ptrSimCheckIkGroup)(simInt ikGroupHandle, simInt jointCnt, const simInt *jointHandles, simFloat *jointValues, const simInt *jointOptions)
Definition: v_repLib.h:156
simInt(__cdecl * ptrSimCreateStack)()
Definition: v_repLib.h:453
simFloat(__cdecl * ptrSimGetSystemTime)()
Definition: v_repLib.h:128
ptr_simDoEntitiesCollide _simDoEntitiesCollide
Definition: v_repLib.cpp:575
ptrSimGetCollisionHandle simGetCollisionHandle
Definition: v_repLib.cpp:155
ptrSimSetVisionSensorImage simSetVisionSensorImage
Definition: v_repLib.cpp:340
simFloat *(__cdecl * ptrSimGenerateIkPath)(simInt ikGroupHandle, simInt jointCnt, const simInt *jointHandles, simInt ptCnt, simInt collisionPairCnt, const simInt *collisionPairs, const simInt *jointOptions, simVoid *reserved)
Definition: v_repLib.h:450
simInt(__cdecl * ptrSimRegisterCustomLuaVariable)(const simChar *varName, const simChar *varValue)
Definition: v_repLib.h:230
ptr_simIsDynamicMotorEnabled _simIsDynamicMotorEnabled
Definition: v_repLib.cpp:543
simChar *(__cdecl * ptrSimPersistentDataRead)(const simChar *dataName, simInt *dataLength)
Definition: v_repLib.h:351
ptr_simIsShapeDynamicallyStatic _simIsShapeDynamicallyStatic
Definition: v_repLib.cpp:511
ptrSimIsStackValueNull simIsStackValueNull
Definition: v_repLib.cpp:450
simInt(__cdecl * ptrSimComputeJacobian)(simInt ikGroupHandle, simInt options, simVoid *reserved)
Definition: v_repLib.h:448
ptrSimAssociateScriptWithObject simAssociateScriptWithObject
Definition: v_repLib.cpp:143
simInt(__cdecl * ptrSimHandlePath)(simInt pathHandle, simFloat deltaTime)
Definition: v_repLib.h:1166
ptrSimGetSystemTime simGetSystemTime
Definition: v_repLib.cpp:107
ptrSimGetQHull simGetQHull
Definition: v_repLib.cpp:422
ptrSimSetArrayParameter simSetArrayParameter
Definition: v_repLib.cpp:324
ptrSimRemoveObjectFromSelection simRemoveObjectFromSelection
Definition: v_repLib.cpp:123
ptr_simGetPurePrimitiveSizes _simGetPurePrimitiveSizes
Definition: v_repLib.cpp:566
ptr_simGetVortexParameters _simGetVortexParameters
Definition: v_repLib.cpp:615
ptrSimSetObjectParent simSetObjectParent
Definition: v_repLib.cpp:93
ptr_simGetDamping _simGetDamping
Definition: v_repLib.cpp:617
simInt(__cdecl * ptrSimSetUIButtonTexture)(simInt uiHandle, simInt buttonHandle, const simInt *size, const simChar *textureData)
Definition: v_repLib.h:378
simInt(__cdecl * ptrSimGetStackInt32Value)(simInt stackHandle, simInt *numberValue)
Definition: v_repLib.h:473
simChar *(__cdecl * ptrSimGetUIButtonLabel)(simInt uiHandle, simInt buttonHandle)
Definition: v_repLib.h:374
ptrSimSetObjectStringParameter simSetObjectStringParameter
Definition: v_repLib.cpp:319
simInt(__cdecl * ptrSimRegisterScriptCallbackFunction)(const simChar *funcNameAtPluginName, const simChar *callTips, simVoid(*callBack)(struct SScriptCallBack *cb))
Definition: v_repLib.h:231
simInt(__cdecl * ptrSimSetScriptAttribute)(simInt scriptHandle, simInt attributeID, simFloat floatVal, simInt intOrBoolVal)
Definition: v_repLib.h:430
ptr_simGetDynamicForceSensorLocalTransformationPart2 _simGetDynamicForceSensorLocalTransformationPart2
Definition: v_repLib.cpp:542
simInt(__cdecl * ptr_simGetJointMode)(const simVoid *joint)
Definition: v_repLib.h:534
ptrSimGetDialogInput simGetDialogInput
Definition: v_repLib.cpp:206
ptr_simSetShapeDynamicVelocity _simSetShapeDynamicVelocity
Definition: v_repLib.cpp:536
ptrSimGetScriptAttribute simGetScriptAttribute
Definition: v_repLib.cpp:410
ptrSimGetSceneCustomData simGetSceneCustomData
Definition: v_repLib.cpp:167
ptr_simGetTimeDiffInMs _simGetTimeDiffInMs
Definition: v_repLib.cpp:574
simChar *(__cdecl * ptrSimGetScriptText)(simInt scriptHandle)
Definition: v_repLib.h:162
ptrSimGetDistanceHandle simGetDistanceHandle
Definition: v_repLib.cpp:156
simInt(__cdecl * ptrSimSaveModel)(int baseOfModelHandle, const simChar *filename)
Definition: v_repLib.h:135
ptrSimConvexDecompose simConvexDecompose
Definition: v_repLib.cpp:380
simInt(__cdecl * ptrSimGetObjects)(simInt index, simInt objectType)
Definition: v_repLib.h:87
simBool(__cdecl * ptr_simIsDynamicMotorEnabled)(const simVoid *joint)
Definition: v_repLib.h:563
ptrSimGetSimulationState simGetSimulationState
Definition: v_repLib.cpp:106
ptrSimResetScript simResetScript
Definition: v_repLib.cpp:151
ptrSimBroadcastMessage simBroadcastMessage
Definition: v_repLib.cpp:190
ptrSimGetScriptSimulationParameter simGetScriptSimulationParameter
Definition: v_repLib.cpp:192
ptrSimSaveUI simSaveUI
Definition: v_repLib.cpp:116
ptrSimCreateUI simCreateUI
Definition: v_repLib.cpp:343
simInt(__cdecl * ptrSimSerialPortClose)(simInt portNumber)
Definition: v_repLib.h:1147
simBool(__cdecl * ptr_simDoEntitiesCollide)(simInt entity1ID, simInt entity2ID, simInt *cacheBuffer, simBool overrideCollidableFlagIfShape1, simBool overrideCollidableFlagIfShape2, simBool pathPlanningRoutineCalling)
Definition: v_repLib.h:595
ptrSimSerialOpen simSerialOpen
Definition: v_repLib.cpp:278
simInt(__cdecl * ptrSimGetUIButtonSize)(simInt uiHandle, simInt buttonHandle, simInt *size)
Definition: v_repLib.h:372
simInt(__cdecl * ptrSimGetObjectParent)(simInt objectHandle)
Definition: v_repLib.h:112
ptrSimUnfoldStackTable simUnfoldStackTable
Definition: v_repLib.cpp:461
simInt(__cdecl * ptrSimCreateOctree)(simFloat voxelSize, simInt options, simFloat pointSize, simVoid *reserved)
Definition: v_repLib.h:491
simInt(__cdecl * ptrSimGetUIProperty)(simInt uiHandle)
Definition: v_repLib.h:367
simInt(__cdecl * ptrSimGetObjectSelectionSize)()
Definition: v_repLib.h:145
simInt(__cdecl * ptrSimRegisterCustomLuaFunction)(const simChar *funcName, const simChar *callTips, const simInt *inputArgumentTypes, simVoid(*callBack)(struct SLuaCallBack *p))
Definition: v_repLib.h:229
simInt(__cdecl * ptrSimAddParticleObject)(simInt objectType, simFloat size, simFloat density, const simVoid *params, simFloat lifeTime, simInt maxItemCount, const simFloat *ambient_diffuse, const simFloat *setToNULL, const simFloat *specular, const simFloat *emission)
Definition: v_repLib.h:252
simInt(__cdecl * ptrSimInvertMatrix)(simFloat *matrix)
Definition: v_repLib.h:121
ptrSimCreatePointCloud simCreatePointCloud
Definition: v_repLib.cpp:471
ptrSimGetPathPosition simGetPathPosition
Definition: v_repLib.cpp:84
ptrSimGetObjectType simGetObjectType
Definition: v_repLib.cpp:94
simInt(__cdecl * ptrSimReadForceSensor)(simInt objectHandle, simFloat *forceVector, simFloat *torqueVector)
Definition: v_repLib.h:277
ptrSimPerformPathSearchStep simPerformPathSearchStep
Definition: v_repLib.cpp:600
ptrSimCameraFitToView simCameraFitToView
Definition: v_repLib.cpp:328
ptrSimHandleMill simHandleMill
Definition: v_repLib.cpp:133
ptrSimGetStackBoolValue simGetStackBoolValue
Definition: v_repLib.cpp:451
simInt(__cdecl * ptrSimGetUInt64Parameter)(simInt parameter, simUInt64 *intState)
Definition: v_repLib.h:76
simInt(__cdecl * ptrSimResetVisionSensor)(simInt visionSensorHandle)
Definition: v_repLib.h:355
ptrSimGetModelProperty simGetModelProperty
Definition: v_repLib.cpp:272
ptrSimSetPointCloudOptions simSetPointCloudOptions
Definition: v_repLib.cpp:472
ptrSimGetEngineInt32Parameter simGetEngineInt32Parameter
Definition: v_repLib.cpp:465
ptrSimGetClosestPositionOnPath simGetClosestPositionOnPath
Definition: v_repLib.cpp:255
ptrSimDebugStack simDebugStack
Definition: v_repLib.cpp:462
ptrSimInsertDataIntoStackTable simInsertDataIntoStackTable
Definition: v_repLib.cpp:446
ptrSimReleaseBuffer simReleaseBuffer
Definition: v_repLib.cpp:172
ptrSimFloatingViewRemove simFloatingViewRemove
Definition: v_repLib.cpp:195
ptr_simGetObjectType _simGetObjectType
Definition: v_repLib.cpp:500
ptrSimRegisterCustomLuaFunction simRegisterCustomLuaFunction
Definition: v_repLib.cpp:208
ptrSimGetUIButtonProperty simGetUIButtonProperty
Definition: v_repLib.cpp:349
ptrSimResetVisionSensor simResetVisionSensor
Definition: v_repLib.cpp:334
ptrSimGetSignalName simGetSignalName
Definition: v_repLib.cpp:247
ptrSimResetCollision simResetCollision
Definition: v_repLib.cpp:158
simInt(__cdecl * ptrSimMultiplyMatrices)(const simFloat *matrixIn1, const simFloat *matrixIn2, simFloat *matrixOut)
Definition: v_repLib.h:122
simInt(__cdecl * ptrSimAddParticleObjectItem)(simInt objectHandle, const simFloat *itemData)
Definition: v_repLib.h:254
simBool(__cdecl * ptr_simGetDistanceBetweenEntitiesIfSmaller)(simInt entity1ID, simInt entity2ID, simFloat *distance, simFloat *ray, simInt *cacheBuffer, simBool overrideMeasurableFlagIfNonCollection1, simBool overrideMeasurableFlagIfNonCollection2, simBool pathPlanningRoutineCalling)
Definition: v_repLib.h:596
ptrSimGetContactInfo simGetContactInfo
Definition: v_repLib.cpp:283
ptrSimGetExplicitHandling simGetExplicitHandling
Definition: v_repLib.cpp:268
simInt(__cdecl * ptrSimCheckCollisionEx)(simInt entity1Handle, simInt entity2Handle, simFloat **intersectionSegments)
Definition: v_repLib.h:195
simVoid(__cdecl * ptr_simGetJointOdeParameters)(const simVoid *joint, simFloat *stopERP, simFloat *stopCFM, simFloat *bounce, simFloat *fudge, simFloat *normalCFM)
Definition: v_repLib.h:1171
ptrSimReadCustomDataBlock simReadCustomDataBlock
Definition: v_repLib.cpp:397
simInt(__cdecl * ptrSimHandleDynamics)(simFloat deltaTime)
Definition: v_repLib.h:157
simBool(__cdecl * ptrSimGetEngineBoolParameter)(simInt paramId, simInt objectHandle, const simVoid *object, simBool *ok)
Definition: v_repLib.h:487
ptrSimCheckProximitySensorEx simCheckProximitySensorEx
Definition: v_repLib.cpp:163
simInt(__cdecl * ptrSimSetJointForce)(simInt objectHandle, simFloat forceOrTorque)
Definition: v_repLib.h:104
ptrSimGetPositionOnPath simGetPositionOnPath
Definition: v_repLib.cpp:252
ptrSimReservedCommand simReservedCommand
Definition: v_repLib.cpp:104
ptrSimGetCollectionObjects simGetCollectionObjects
Definition: v_repLib.cpp:407
ptrSimGetObjectCustomData simGetObjectCustomData
Definition: v_repLib.cpp:170
ptrSimMsgBox simMsgBox
Definition: v_repLib.cpp:375
simInt(__cdecl * ptrSimSetExplicitHandling)(simInt generalObjectHandle, int explicitFlags)
Definition: v_repLib.h:288
ptrSimIsObjectInSelection simIsObjectInSelection
Definition: v_repLib.cpp:121
simInt(__cdecl * ptrSimSetObjectConfiguration)(const simChar *data)
Definition: v_repLib.h:198
simChar *(__cdecl * ptrSimReadCustomDataBlock)(simInt objectHandle, const simChar *dataName, simInt *dataSize)
Definition: v_repLib.h:418
ptrSimPushTableOntoStack simPushTableOntoStack
Definition: v_repLib.cpp:445
ptr_simGetWasPutToSleepOnce _simGetWasPutToSleepOnce
Definition: v_repLib.cpp:530
simInt(__cdecl * ptrSimGetPathPlanningHandle)(const simChar *pathPlanningObjectName)
Definition: v_repLib.h:1151
simInt(__cdecl * ptrSimAddDrawingObject)(simInt objectType, simFloat size, simFloat duplicateTolerance, simInt parentObjectHandle, simInt maxItemCount, const simFloat *ambient_diffuse, const simFloat *setToNULL, const simFloat *specular, const simFloat *emission)
Definition: v_repLib.h:249
simInt(__cdecl * ptr_simHandleJointControl)(const simVoid *joint, simInt auxV, const simInt *inputValuesInt, const simFloat *inputValuesFloat, simFloat *outputValues)
Definition: v_repLib.h:597
ptrSimGetObjectSelection simGetObjectSelection
Definition: v_repLib.cpp:126
simInt(__cdecl * ptrSimCheckProximitySensorEx)(simInt sensorHandle, simInt entityHandle, simInt detectionMode, simFloat detectionThreshold, simFloat maxAngle, simFloat *detectedPoint, simInt *detectedObjectHandle, simFloat *normalVector)
Definition: v_repLib.h:184
ptrSimGetStackInt32Value simGetStackInt32Value
Definition: v_repLib.cpp:452
ptrSimCreateUIButton simCreateUIButton
Definition: v_repLib.cpp:344
simChar *(__cdecl * ptrSimGetObjectName)(simInt objectHandle)
Definition: v_repLib.h:86
simInt(__cdecl * ptrSimUnfoldStackTable)(simInt stackHandle)
Definition: v_repLib.h:482
ptr_simGetDistanceBetweenEntitiesIfSmaller _simGetDistanceBetweenEntitiesIfSmaller
Definition: v_repLib.cpp:576
ptrSimSetScriptVariable simSetScriptVariable
Definition: v_repLib.cpp:463
simInt(__cdecl * ptrSimReleaseScriptRawBuffer)(simInt scriptHandle, simInt bufferHandle)
Definition: v_repLib.h:238
simChar *(__cdecl * ptrSimGetCollectionName)(simInt collectionHandle)
Definition: v_repLib.h:92
simInt(__cdecl * ptrSimSetVisionSensorImage)(simInt visionSensorHandle, const simFloat *image)
Definition: v_repLib.h:361
simInt(__cdecl * ptrSimReadProximitySensor)(simInt sensorHandle, simFloat *detectedPoint, simInt *detectedObjectHandle, simFloat *normalVector)
Definition: v_repLib.h:153
simFloat *(__cdecl * ptrSimFindIkPath)(simInt motionPlanningObjectHandle, const simFloat *startConfig, const simFloat *goalPose, simInt options, simFloat stepSize, simInt *outputConfigsCnt, simFloat *reserved, const simInt *auxIntParams, const simFloat *auxFloatParams)
Definition: v_repLib.h:1156
ptrSimHandleCollision simHandleCollision
Definition: v_repLib.cpp:127
simChar *(__cdecl * ptrSimMsgBox)(simInt dlgType, simInt buttons, const simChar *title, const simChar *message)
Definition: v_repLib.h:396
simInt(__cdecl * ptrSimImportMesh)(simInt fileformat, const simChar *pathAndFilename, simInt options, simFloat identicalVerticeTolerance, simFloat scalingFactor, simFloat ***vertices, simInt **verticesSizes, simInt ***indices, simInt **indicesSizes, simFloat ***reserved, simChar ***names)
Definition: v_repLib.h:316
simInt(__cdecl * ptrSimRotateAroundAxis)(const simFloat *matrixIn, const simFloat *axis, const simFloat *axisPos, simFloat angle, simFloat *matrixOut)
Definition: v_repLib.h:343
simInt(__cdecl * ptr_simMpHandleIkGroupObject)(const simVoid *ikGroup)
Definition: v_repLib.h:526
simInt(__cdecl * ptrSimSetObjectParent)(simInt objectHandle, simInt parentObjectHandle, simBool keepInPlace)
Definition: v_repLib.h:114
ptrSimGetObjectLastSelection simGetObjectLastSelection
Definition: v_repLib.cpp:125
ptrSimRemovePointsFromPointCloud simRemovePointsFromPointCloud
Definition: v_repLib.cpp:477
simChar *(__cdecl * ptrSimGetSimulatorMessage)(simInt *messageID, simInt *auxiliaryData, simInt *returnedDataSize)
Definition: v_repLib.h:62
simChar *(__cdecl * ptrSimGetScriptName)(simInt scriptHandle)
Definition: v_repLib.h:169
simInt(__cdecl * ptrSimGetRealTimeSimulation)()
Definition: v_repLib.h:203
simVoid(__cdecl * ptr_simGetAdditionalForceAndTorque)(const simVoid *shape, simFloat *force, simFloat *torque)
Definition: v_repLib.h:557
ptrSimCreateUIButtonArray simCreateUIButtonArray
Definition: v_repLib.cpp:358
ptrSimGetMaterialId simGetMaterialId
Definition: v_repLib.cpp:389
ptrSimEmptyCollection simEmptyCollection
Definition: v_repLib.cpp:70
simInt(__cdecl * ptrSimAddPointCloud)(simInt pageMask, simInt layerMask, simInt objectHandle, simInt options, simFloat pointSize, simInt ptCnt, const simFloat *pointCoordinates, const simChar *defaultColors, const simChar *pointColors, const simFloat *pointNormals)
Definition: v_repLib.h:419
simInt(__cdecl * ptrSimLoadUI)(const simChar *filename, int maxCount, int *uiHandles)
Definition: v_repLib.h:136
ptrSimGetFloatingParameter simGetFloatingParameter
Definition: v_repLib.cpp:57
simInt(__cdecl * ptrSimAdjustView)(simInt viewHandleOrIndex, simInt associatedViewableObjectHandle, simInt options, const simChar *viewLabel)
Definition: v_repLib.h:217
ptrSimGetIkGroupMatrix simGetIkGroupMatrix
Definition: v_repLib.cpp:381
simInt(__cdecl * ptrSimSerialClose)(simInt portHandle)
Definition: v_repLib.h:300
simInt(__cdecl * ptr_simGetJointCallbackCallOrder)(const simVoid *joint)
Definition: v_repLib.h:600
simVoid(__cdecl * ptr_simSetDynamicSimulationIconCode)(simVoid *object, simInt code)
Definition: v_repLib.h:515
simInt(__cdecl * ptrSimRemoveVoxelsFromOctree)(simInt octreeHandle, simInt options, const simFloat *pts, simInt ptCnt, simVoid *reserved)
Definition: v_repLib.h:496
simFloat(__cdecl * ptr_simGetDynamicMotorTargetVelocity)(const simVoid *joint)
Definition: v_repLib.h:568
simInt(__cdecl * ptrSimCreatePureShape)(simInt primitiveType, simInt options, const simFloat *sizes, simFloat mass, const simInt *precision)
Definition: v_repLib.h:319
simInt(__cdecl * ptrSimGetConfigForTipPose)(simInt ikGroupHandle, simInt jointCnt, const simInt *jointHandles, simFloat thresholdDist, simInt maxTimeInMs, simFloat *retConfig, const simFloat *metric, simInt collisionPairCnt, const simInt *collisionPairs, const simInt *jointOptions, const simFloat *lowLimits, const simFloat *ranges, simVoid *reserved)
Definition: v_repLib.h:449
ptrSimModifyGhost simModifyGhost
Definition: v_repLib.cpp:383
simInt(__cdecl * ptrSimGetObjectType)(simInt objectHandle)
Definition: v_repLib.h:115
simVoid(__cdecl * ptr_simDisableDynamicTreeForManipulation)(const simVoid *object, simBool disableFlag)
Definition: v_repLib.h:536
ptr_simGetGravity _simGetGravity
Definition: v_repLib.cpp:573
ptr_simSetDynamicsFullRefreshFlag _simSetDynamicsFullRefreshFlag
Definition: v_repLib.cpp:532
simInt(__cdecl * ptrSimSetJointMode)(simInt jointHandle, simInt jointMode, simInt options)
Definition: v_repLib.h:297
ptrSimDeleteUIButtonArray simDeleteUIButtonArray
Definition: v_repLib.cpp:360
simBool(__cdecl * ptr_simIsDynamicMotorPositionCtrlEnabled)(const simVoid *joint)
Definition: v_repLib.h:564
simChar *(__cdecl * ptrSimGetExtensionString)(simInt objectHandle, simInt index, const char *key)
Definition: v_repLib.h:451
ptrSimSetIntegerSignal simSetIntegerSignal
Definition: v_repLib.cpp:238
ptrSimGetRotationAxis simGetRotationAxis
Definition: v_repLib.cpp:321
simInt(__cdecl * ptrSimFloatingViewRemove)(simInt floatingViewHandle)
Definition: v_repLib.h:216
simInt(__cdecl * ptrSimGetDistanceHandle)(const simChar *distanceObjectName)
Definition: v_repLib.h:177
simInt(__cdecl * ptrSimGetObjectHandle)(const simChar *objectName)
Definition: v_repLib.h:83
ptrSimRegisterCustomLuaVariable simRegisterCustomLuaVariable
Definition: v_repLib.cpp:210
ptr_simGetDynamicMotorTargetPosition _simGetDynamicMotorTargetPosition
Definition: v_repLib.cpp:547
ptrSimGetThreadId simGetThreadId
Definition: v_repLib.cpp:385
simInt(__cdecl * ptrSimGetThreadId)()
Definition: v_repLib.h:406
ptrSimGetScript simGetScript
Definition: v_repLib.cpp:144
simInt(__cdecl * ptrSimGetScript)(simInt index)
Definition: v_repLib.h:165
simInt(__cdecl * ptrSimAssociateScriptWithObject)(simInt scriptHandle, simInt associatedObjectHandle)
Definition: v_repLib.h:164
ptrSimGetExtensionString simGetExtensionString
Definition: v_repLib.cpp:430
ptrSimQuitSimulator simQuitSimulator
Definition: v_repLib.cpp:384
ptr_simSetObjectCumulativeTransformation _simSetObjectCumulativeTransformation
Definition: v_repLib.cpp:509
simInt(__cdecl * ptrSimSetObjectPosition)(simInt objectHandle, simInt relativeToObjectHandle, const simFloat *position)
Definition: v_repLib.h:97
ptrSimCallScriptFunction simCallScriptFunction
Definition: v_repLib.cpp:425
ptrSimImportShape simImportShape
Definition: v_repLib.cpp:294
ptrSimAddPointCloud simAddPointCloud
Definition: v_repLib.cpp:398
ptrSimGetUIButtonLabel simGetUIButtonLabel
Definition: v_repLib.cpp:353
ptrSimCheckOctreePointOccupancy simCheckOctreePointOccupancy
Definition: v_repLib.cpp:485
simInt(__cdecl * ptrSimSerialCheck)(simInt portHandle)
Definition: v_repLib.h:303
ptrSimRMLPosition simRMLPosition
Definition: v_repLib.cpp:366
ptrSimResetMill simResetMill
Definition: v_repLib.cpp:161
simInt(__cdecl * ptrSimRegisterContactCallback)(simInt(*callBack)(simInt, simInt, simInt, simInt *, simFloat *))
Definition: v_repLib.h:332
simVoid *(__cdecl * ptrSimSendModuleMessage)(simInt message, simInt *auxiliaryData, simVoid *customData, simInt *replyData)
Definition: v_repLib.h:67
simInt(__cdecl * ptrSimBuildMatrix)(const simFloat *position, const simFloat *eulerAngles, simFloat *matrix)
Definition: v_repLib.h:119
ptr_simSetJointPosition _simSetJointPosition
Definition: v_repLib.cpp:522
ptrSimPushFloatOntoStack simPushFloatOntoStack
Definition: v_repLib.cpp:438
ptrSimGetIntegerSignal simGetIntegerSignal
Definition: v_repLib.cpp:239
ptr_simGetJointPositionInterval _simGetJointPositionInterval
Definition: v_repLib.cpp:539
ptrSimGetObjectHandle simGetObjectHandle
Definition: v_repLib.cpp:62
ptrSimInsertPointsIntoPointCloud simInsertPointsIntoPointCloud
Definition: v_repLib.cpp:476
simInt(__cdecl * ptr_simGetGeometricCount)(const simVoid *geomInfo)
Definition: v_repLib.h:584
ptrSimPushUInt8TableOntoStack simPushUInt8TableOntoStack
Definition: v_repLib.cpp:441
ptrSimHandleDynamics simHandleDynamics
Definition: v_repLib.cpp:136
ptr_simGetTreeDynamicProperty _simGetTreeDynamicProperty
Definition: v_repLib.cpp:512
ptrSimAddObjectCustomData simAddObjectCustomData
Definition: v_repLib.cpp:168
simInt(__cdecl * ptrSimRMLRemove)(simInt handle)
Definition: v_repLib.h:392
ptrSimSetStringParameter simSetStringParameter
Definition: v_repLib.cpp:60
simInt(__cdecl * ptrSimSetObjectQuaternion)(simInt objectHandle, simInt relativeToObjectHandle, const simFloat *quaternion)
Definition: v_repLib.h:386
simInt(__cdecl * ptrSimCreateProximitySensor)(simInt sensorType, simInt subType, simInt options, const simInt *intParams, const simFloat *floatParams, const simFloat *color)
Definition: v_repLib.h:328
simInt(__cdecl * ptrSimGetLightParameters)(simInt objectHandle, simFloat *setToNULL, simFloat *diffusePart, simFloat *specularPart)
Definition: v_repLib.h:282
simInt(__cdecl * ptrSimSetIkGroupProperties)(simInt ikGroupHandle, simInt resolutionMethod, simInt maxIterations, simFloat damping, void *reserved)
Definition: v_repLib.h:347
ptrSimSetUIButtonColor simSetUIButtonColor
Definition: v_repLib.cpp:356
simInt *(__cdecl * ptrSimGetCollectionObjects)(simInt collectionHandle, simInt *objectCount)
Definition: v_repLib.h:428
ptr_simIsDynamicMotorTorqueModulationEnabled _simIsDynamicMotorTorqueModulationEnabled
Definition: v_repLib.cpp:545
simInt(__cdecl * ptrSimGetObjectCustomData)(simInt objectHandle, simInt header, simChar *data)
Definition: v_repLib.h:191
simInt(__cdecl * ptrSimHandleMechanism)(simInt mechanismHandle)
Definition: v_repLib.h:159
simVoid(__cdecl * ptr_simSetDynamicObjectFlagForVisualization)(simVoid *object, simInt flag)
Definition: v_repLib.h:516
simChar *(__cdecl * ptrSimGetDialogInput)(simInt genericDialogHandle)
Definition: v_repLib.h:227
simInt(__cdecl * ptrSimPushFloatOntoStack)(simInt stackHandle, simFloat value)
Definition: v_repLib.h:459
simInt(__cdecl * ptrSimRemoveDrawingObject)(simInt objectHandle)
Definition: v_repLib.h:250
simInt(__cdecl * ptrSimHandleCollision)(simInt collisionObjectHandle)
Definition: v_repLib.h:148
simBool(__cdecl * ptr_simGetParentFollowsDynamic)(const simVoid *shape)
Definition: v_repLib.h:555
ptrSimGetObjectSelectionSize simGetObjectSelectionSize
Definition: v_repLib.cpp:124
simInt(__cdecl * ptrSimGetSimulationPassesPerRenderingPass)()
Definition: v_repLib.h:206
ptrSimSetBooleanParameter simSetBooleanParameter
Definition: v_repLib.cpp:47
ptrSimGetJointForce simGetJointForce
Definition: v_repLib.cpp:323
ptrSimResetProximitySensor simResetProximitySensor
Definition: v_repLib.cpp:160
ptrSimSetUIButtonProperty simSetUIButtonProperty
Definition: v_repLib.cpp:350
simBool(__cdecl * ptr_simIsGeomWrapGeometric)(const simVoid *geomInfo)
Definition: v_repLib.h:582
ptr_simGetGeomWrapFromGeomProxy _simGetGeomWrapFromGeomProxy
Definition: v_repLib.cpp:559
simInt(__cdecl * ptrSimTubeClose)(simInt tubeHandle)
Definition: v_repLib.h:307
ptrSimSetSphericalJointMatrix simSetSphericalJointMatrix
Definition: v_repLib.cpp:88
ptrSimSetLinkDummy simSetLinkDummy
Definition: v_repLib.cpp:270
ptrSimSetFloatSignal simSetFloatSignal
Definition: v_repLib.cpp:241
simInt(__cdecl * ptrSimGetContactInfo)(simInt dynamicPass, simInt objectHandle, simInt index, simInt *objectHandles, simFloat *contactInfo)
Definition: v_repLib.h:304
ptrSimCopyStack simCopyStack
Definition: v_repLib.cpp:434
ptrSimHandleCustomizationScripts simHandleCustomizationScripts
Definition: v_repLib.cpp:408
ptr_simSetGeomProxyDynamicsFullRefreshFlag _simSetGeomProxyDynamicsFullRefreshFlag
Definition: v_repLib.cpp:533
ptrSimHandlePath simHandlePath
Definition: v_repLib.cpp:604
ptrSimComputeJacobian simComputeJacobian
Definition: v_repLib.cpp:427
simVoid(__cdecl * ptr_simGetCumulativeMeshes)(const simVoid *geomInfo, simFloat **vertices, simInt *verticesSize, simInt **indices, simInt *indicesSize)
Definition: v_repLib.h:590
ptrSimScaleObject simScaleObject
Definition: v_repLib.cpp:404
ptrSimSwitchThread simSwitchThread
Definition: v_repLib.cpp:412
ptrSimBreakForceSensor simBreakForceSensor
Definition: v_repLib.cpp:257
ptrSimClearFloatSignal simClearFloatSignal
Definition: v_repLib.cpp:243
simInt(__cdecl * ptrSimGetUIHandle)(const simChar *uiName)
Definition: v_repLib.h:366
ptr_simGetGeometricCount _simGetGeometricCount
Definition: v_repLib.cpp:564
simInt(__cdecl * ptrSimReorientShapeBoundingBox)(simInt shapeHandle, simInt relativeToHandle, simInt reservedSetToZero)
Definition: v_repLib.h:432
ptrSimCreateIkElement simCreateIkElement
Definition: v_repLib.cpp:415
ptrSimCheckProximitySensorEx2 simCheckProximitySensorEx2
Definition: v_repLib.cpp:164
simInt(__cdecl * ptrSimResetScript)(simInt scriptHandle)
Definition: v_repLib.h:172
simInt(__cdecl * ptrSimRemoveIkGroup)(simInt ikGroupHandle)
Definition: v_repLib.h:435
ptrSimSetStringSignal simSetStringSignal
Definition: v_repLib.cpp:244
ptrSimPopStackItem simPopStackItem
Definition: v_repLib.cpp:448
simInt(__cdecl * ptrSimGetShapeMassAndInertia)(simInt shapeHandle, simFloat *mass, simFloat *inertiaMatrix, simFloat *centerOfMass, const simFloat *transformation)
Definition: v_repLib.h:398
simInt(__cdecl * ptrSimFloatingViewAdd)(simFloat posX, simFloat posY, simFloat sizeX, simFloat sizeY, simInt options)
Definition: v_repLib.h:215
ptrSimCreateTexture simCreateTexture
Definition: v_repLib.cpp:395
ptr_simGetObjectFromIndex _simGetObjectFromIndex
Definition: v_repLib.cpp:498
ptrSimSetJointTargetPosition simSetJointTargetPosition
Definition: v_repLib.cpp:81
simInt(__cdecl * ptrSimImportShape)(simInt fileformat, const simChar *pathAndFilename, simInt options, simFloat identicalVerticeTolerance, simFloat scalingFactor)
Definition: v_repLib.h:315
simChar *(__cdecl * ptrSimGetModuleName)(simInt index, simUChar *moduleVersion)
Definition: v_repLib.h:212
simInt *(__cdecl * ptrSimUngroupShape)(simInt shapeHandle, simInt *shapeCount)
Definition: v_repLib.h:400
simInt(__cdecl * ptrSimAuxiliaryConsoleClose)(simInt consoleHandle)
Definition: v_repLib.h:312
ptrSimSetObjectQuaternion simSetObjectQuaternion
Definition: v_repLib.cpp:365
ptrSimGetScaledImage simGetScaledImage
Definition: v_repLib.cpp:420
simBool(__cdecl * ptr_simGetShapeIsStaticAndNotRespondableButDynamicTag)(const simVoid *shape)
Definition: v_repLib.h:541
ptrSimGetDecimatedMesh simGetDecimatedMesh
Definition: v_repLib.cpp:423
ptrSimCopyPasteSelectedObjects simCopyPasteSelectedObjects
Definition: v_repLib.cpp:602
simInt(__cdecl * ptrSimDisplayDialog)(const simChar *titleText, const simChar *mainText, simInt dialogType, const simChar *initialText, const simFloat *titleColors, const simFloat *dialogColors, simInt *elementHandle)
Definition: v_repLib.h:225
simInt(__cdecl * ptrSimReadDistance)(simInt distanceObjectHandle, simFloat *smallestDistance)
Definition: v_repLib.h:151
simInt(__cdecl * ptr_simGetContactCallbackCount)()
Definition: v_repLib.h:513
ptrSimGetObjectStringParameter simGetObjectStringParameter
Definition: v_repLib.cpp:318
simInt(__cdecl * ptrSimRefreshDialogs)(simInt refreshDegree)
Definition: v_repLib.h:175
simInt(__cdecl * ptrSimPushUInt8TableOntoStack)(simInt stackHandle, const simUChar *values, simInt valueCnt)
Definition: v_repLib.h:462
simInt(__cdecl * ptrSimUnloadModule)(simInt pluginhandle)
Definition: v_repLib.h:66
ptrSimGetJointTargetVelocity simGetJointTargetVelocity
Definition: v_repLib.cpp:213
ptr_simGetBulletCollisionMargin _simGetBulletCollisionMargin
Definition: v_repLib.cpp:612
ptrSimGetMpConfigTransition simGetMpConfigTransition
Definition: v_repLib.cpp:594
ptrSimCheckCollision simCheckCollision
Definition: v_repLib.cpp:173
simInt(__cdecl * ptrSimGetRotationAxis)(const simFloat *matrixStart, const simFloat *matrixGoal, simFloat *axis, simFloat *angle)
Definition: v_repLib.h:342
ptrSimGetVisionSensorResolution simGetVisionSensorResolution
Definition: v_repLib.cpp:337
simInt(__cdecl * ptrSimSetShapeTexture)(simInt shapeHandle, simInt textureId, simInt mappingMode, simInt options, const simFloat *uvScaling, const simFloat *position, const simFloat *orientation)
Definition: v_repLib.h:426
simInt(__cdecl * ptrSimGetPathLength)(simInt objectHandle, simFloat *length)
Definition: v_repLib.h:107
simInt(__cdecl * ptrSimGetObjectLastSelection)()
Definition: v_repLib.h:146
ptrSimCheckCollisionEx simCheckCollisionEx
Definition: v_repLib.cpp:174
simVoid(__cdecl * ptr_simGetObjectLocalTransformation)(const simVoid *object, simFloat *pos, simFloat *quat, simBool excludeFirstJointTransformation)
Definition: v_repLib.h:527
simInt(__cdecl * ptrSimGetNavigationMode)()
Definition: v_repLib.h:222
simInt(__cdecl * ptrSimCopyPasteObjects)(simInt *objectHandles, simInt objectCount, simInt options)
Definition: v_repLib.h:239
ptrSimLockInterface simLockInterface
Definition: v_repLib.cpp:601
ptrSimSetScriptRawBuffer simSetScriptRawBuffer
Definition: v_repLib.cpp:216
ptrSimGetScriptProperty simGetScriptProperty
Definition: v_repLib.cpp:142
ptrSimDoesFileExist simDoesFileExist
Definition: v_repLib.cpp:120
ptrSimSetUISlider simSetUISlider
Definition: v_repLib.cpp:354
simInt(__cdecl * ptrSimGetCustomizationScriptAssociatedWithObject)(simInt objectHandle)
Definition: v_repLib.h:167
simInt(__cdecl * ptrSimGetUISlider)(simInt uiHandle, simInt buttonHandle)
Definition: v_repLib.h:376
simVoid(__cdecl * ptr_simGetObjectCumulativeTransformation)(const simVoid *object, simFloat *pos, simFloat *quat, simBool excludeFirstJointTransformation)
Definition: v_repLib.h:530
ptrSimSubtractObjectFromOctree simSubtractObjectFromOctree
Definition: v_repLib.cpp:482
simInt(__cdecl * ptrSimSetGraphUserData)(simInt graphHandle, const simChar *dataStreamName, simFloat data)
Definition: v_repLib.h:247
simInt(__cdecl * ptrSimSetFloatingParameter)(simInt parameter, simFloat floatState)
Definition: v_repLib.h:77
ptrSimAddForce simAddForce
Definition: v_repLib.cpp:266
ptrSimSetCollectionName simSetCollectionName
Definition: v_repLib.cpp:72
simVoid(__cdecl * ptr_simSetDynamicForceSensorLocalTransformationPart2IsValid)(simVoid *forceSensor, simBool valid)
Definition: v_repLib.h:578
ptrSimSetInt32Parameter simSetInt32Parameter
Definition: v_repLib.cpp:53
simFloat *(__cdecl * ptrSimGetVisionSensorImage)(simInt visionSensorHandle)
Definition: v_repLib.h:359
ptrSimGetUISlider simGetUISlider
Definition: v_repLib.cpp:355
const simVoid *(__cdecl * ptr_simGetGeomWrapFromGeomProxy)(const simVoid *geomData)
Definition: v_repLib.h:579
simInt(__cdecl * ptrSimCreateHeightfieldShape)(simInt options, simFloat shadingAngle, simInt xPointCount, simInt yPointCount, simFloat xSize, const simFloat *heights)
Definition: v_repLib.h:320
ptrSimSetObjectFloatParameter simSetObjectFloatParameter
Definition: v_repLib.cpp:317
simInt(__cdecl * ptrSimReleaseStack)(simInt stackHandle)
Definition: v_repLib.h:454
ptrSimSendData simSendData
Definition: v_repLib.cpp:224
ptrSimAddForceAndTorque simAddForceAndTorque
Definition: v_repLib.cpp:265
simInt(__cdecl * ptrSimDebugStack)(simInt stackHandle, simInt cIndex)
Definition: v_repLib.h:483
ptrSimSetLightParameters simSetLightParameters
Definition: v_repLib.cpp:260
simInt(__cdecl * ptrSimSetObjectOrientation)(simInt objectHandle, simInt relativeToObjectHandle, const simFloat *eulerAngles)
Definition: v_repLib.h:99
ptrSimPackTable simPackTable
Definition: v_repLib.cpp:487
ptrSimPushBoolOntoStack simPushBoolOntoStack
Definition: v_repLib.cpp:436
simInt(__cdecl * ptrSimGetMaterialId)(const simChar *materialName)
Definition: v_repLib.h:410
simInt(__cdecl * ptrSimWriteCustomDataBlock)(simInt objectHandle, const simChar *dataName, const simChar *data, simInt dataSize)
Definition: v_repLib.h:417
simInt(__cdecl * ptrSimPushInt32TableOntoStack)(simInt stackHandle, const simInt *values, simInt valueCnt)
Definition: v_repLib.h:463
simVoid(__cdecl * ptr_simGetJointBulletParameters)(const simVoid *joint, simFloat *stopERP, simFloat *stopCFM, simFloat *normalCFM)
Definition: v_repLib.h:1172
ptrSimGetJointInterval simGetJointInterval
Definition: v_repLib.cpp:89
simChar *(__cdecl * ptrSimGetLastError)()
Definition: v_repLib.h:64
ptrSimReceiveData simReceiveData
Definition: v_repLib.cpp:225
simVoid(__cdecl * ptr_simGetVerticesLocalFrame)(const simVoid *geometric, simFloat *pos, simFloat *quat)
Definition: v_repLib.h:588
simInt(__cdecl * ptrSimStartSimulation)()
Definition: v_repLib.h:208
simInt(__cdecl * ptrSimGetScriptHandle)(const simChar *scriptName)
Definition: v_repLib.h:160
ptrSimModifyPointCloud simModifyPointCloud
Definition: v_repLib.cpp:399
ptrSimAddSceneCustomData simAddSceneCustomData
Definition: v_repLib.cpp:165
simFloat(__cdecl * ptrSimGetSimulationTime)()
Definition: v_repLib.h:126
simInt(__cdecl * ptrSimSetUIPosition)(simInt uiHandle, const simInt *position)
Definition: v_repLib.h:383
ptrSimGetDataOnPath simGetDataOnPath
Definition: v_repLib.cpp:253
const simVoid *(__cdecl * ptr_simGetIkGroupObject)(int ikGroupID)
Definition: v_repLib.h:525
simVoid(__cdecl * ptr_simSetInitialDynamicVelocity)(simVoid *shape, const simFloat *vel)
Definition: v_repLib.h:546
ptrSimAppendScriptArrayEntry simAppendScriptArrayEntry
Definition: v_repLib.cpp:607
const simVoid *(__cdecl * ptr_simGetParentObject)(const simVoid *object)
Definition: v_repLib.h:523
simInt(__cdecl * ptrSimTransformImage)(simUChar *image, const simInt *resolution, simInt options, const simFloat *floatParams, const simInt *intParams, simVoid *reserved)
Definition: v_repLib.h:442
ptrSimRegisterScriptCallbackFunction simRegisterScriptCallbackFunction
Definition: v_repLib.cpp:209
simBool(__cdecl * ptr_simGetGeomProxyDynamicsFullRefreshFlag)(const simVoid *geomData)
Definition: v_repLib.h:554
simFloat(__cdecl * ptrSimGetObjectSizeFactor)(simInt objectHandle)
Definition: v_repLib.h:255
simVoid(__cdecl * ptr_simSetDynamicsFullRefreshFlag)(const simVoid *object, simBool flag)
Definition: v_repLib.h:552
ptr_simGetInitialDynamicVelocity _simGetInitialDynamicVelocity
Definition: v_repLib.cpp:525
ptrSimAuxiliaryConsoleOpen simAuxiliaryConsoleOpen
Definition: v_repLib.cpp:290
simInt(__cdecl * ptrSimSetEngineFloatParameter)(simInt paramId, simInt objectHandle, const simVoid *object, simFloat val)
Definition: v_repLib.h:488
ptr_simClearAdditionalForceAndTorque _simClearAdditionalForceAndTorque
Definition: v_repLib.cpp:538
simChar *(__cdecl * ptrSimOpenTextEditor)(const simChar *initText, const simChar *xml, simVoid *reserved)
Definition: v_repLib.h:507
ptrSimGetUIProperty simGetUIProperty
Definition: v_repLib.cpp:346
simInt(__cdecl * ptrSimGetDialogResult)(simInt genericDialogHandle)
Definition: v_repLib.h:226
ptrSimEndDialog simEndDialog
Definition: v_repLib.cpp:207
simInt(__cdecl * ptrSimSetPathTargetNominalVelocity)(simInt objectHandle, simFloat targetNominalVelocity)
Definition: v_repLib.h:235
simChar *(__cdecl * ptrSimCreateBuffer)(simInt size)
Definition: v_repLib.h:192
ptrSimSerialClose simSerialClose
Definition: v_repLib.cpp:279
simInt(__cdecl * ptrSimPauseSimulation)()
Definition: v_repLib.h:210
ptrSimSetUIProperty simSetUIProperty
Definition: v_repLib.cpp:348
ptr_simGetAdditionalForceAndTorque _simGetAdditionalForceAndTorque
Definition: v_repLib.cpp:537
simInt(__cdecl * ptrSimHandleProximitySensor)(simInt sensorHandle, simFloat *detectedPoint, simInt *detectedObjectHandle, simFloat *normalVector)
Definition: v_repLib.h:152
ptrSimGetJointType simGetJointType
Definition: v_repLib.cpp:95
simInt(__cdecl * ptr_simGetPurePrimitiveType)(const simVoid *geomInfo)
Definition: v_repLib.h:581
ptrSimSearchPath simSearchPath
Definition: v_repLib.cpp:598
simInt(__cdecl * ptrSimRemoveObjectFromSelection)(simInt what, simInt objectHandle)
Definition: v_repLib.h:144
simInt(__cdecl * ptrSimRemoveCollection)(simInt collectionHandle)
Definition: v_repLib.h:90
ptrSimGetObjectSizeFactor simGetObjectSizeFactor
Definition: v_repLib.cpp:234
ptrSimGetObjectParent simGetObjectParent
Definition: v_repLib.cpp:91
ptrSimInitializePathSearch simInitializePathSearch
Definition: v_repLib.cpp:599
ptrSimGetVisionSensorImage simGetVisionSensorImage
Definition: v_repLib.cpp:338
ptr_simGetMotorPid _simGetMotorPid
Definition: v_repLib.cpp:546
ptrSimClearScriptVariable simClearScriptVariable
Definition: v_repLib.cpp:608
ptrSimGetStackStringValue simGetStackStringValue
Definition: v_repLib.cpp:455
simInt(__cdecl * ptrSimGetMechanismHandle)(const simChar *mechanismName)
Definition: v_repLib.h:158
ptrSimLoadUI simLoadUI
Definition: v_repLib.cpp:115
simInt(__cdecl * ptrSimGetStackDoubleValue)(simInt stackHandle, simDouble *numberValue)
Definition: v_repLib.h:475
ptrSimGetObjects simGetObjects
Definition: v_repLib.cpp:66
ptr_simGetObjectCumulativeTransformation _simGetObjectCumulativeTransformation
Definition: v_repLib.cpp:510
ptrSimSetScriptText simSetScriptText
Definition: v_repLib.cpp:140
ptrSimGetSceneCustomDataLength simGetSceneCustomDataLength
Definition: v_repLib.cpp:166
simInt(__cdecl * ptrSimSerialPortRead)(simInt portNumber, simChar *buffer, simInt dataLengthToRead)
Definition: v_repLib.h:1149
ptrSimResetDistance simResetDistance
Definition: v_repLib.cpp:159
simInt(__cdecl * ptrSimHandleGeneralCallbackScript)(simInt callbackId, simInt callbackTag, simVoid *additionalData)
Definition: v_repLib.h:171
simInt(__cdecl * ptrSimGetStackFloatTable)(simInt stackHandle, simFloat *array, simInt count)
Definition: v_repLib.h:480
ptrSimSetObjectSpecialProperty simSetObjectSpecialProperty
Definition: v_repLib.cpp:250
ptrSimHandleMainScript simHandleMainScript
Definition: v_repLib.cpp:149
ptrSimReadForceSensor simReadForceSensor
Definition: v_repLib.cpp:256
ptrSimUnloadModule simUnloadModule
Definition: v_repLib.cpp:45
simInt(__cdecl * ptrSimSetSimulationPassesPerRenderingPass)(simInt p)
Definition: v_repLib.h:341
ptrSimAdvanceSimulationByOneStep simAdvanceSimulationByOneStep
Definition: v_repLib.cpp:186
ptr_simGetDynamicsFullRefreshFlag _simGetDynamicsFullRefreshFlag
Definition: v_repLib.cpp:531
ptrSimHandleGeneralCallbackScript simHandleGeneralCallbackScript
Definition: v_repLib.cpp:150
ptr_simGetObjectListSize _simGetObjectListSize
Definition: v_repLib.cpp:497
ptrSimGetObjectName simGetObjectName
Definition: v_repLib.cpp:65
simInt(__cdecl * ptrSimSendData)(simInt targetID, simInt dataHeader, const simChar *dataName, const simChar *data, simInt dataLength, simInt antennaHandle, simFloat actionRadius, simFloat emissionAngle1, simFloat emissionAngle2, simFloat persistence)
Definition: v_repLib.h:245
simBool(__cdecl * ptr_simIsForceSensorBroken)(const simVoid *forceSensor)
Definition: v_repLib.h:561
ptrSimTubeStatus simTubeStatus
Definition: v_repLib.cpp:289
ptrSimSetLastError simSetLastError
Definition: v_repLib.cpp:197
ptrSimExportIk simExportIk
Definition: v_repLib.cpp:424
simInt(__cdecl * ptr_simGetJointType)(const simVoid *joint)
Definition: v_repLib.h:560
ptrSimCreateMotionPlanning simCreateMotionPlanning
Definition: v_repLib.cpp:596
simInt(__cdecl * ptrSimUnpackTable)(simInt stackHandle, const simChar *buffer, simInt bufferSize)
Definition: v_repLib.h:509
simInt(__cdecl * ptrSimRMLVel)(simInt dofs, simDouble smallestTimeStep, simInt flags, const simDouble *currentPosVelAccel, const simDouble *maxAccelJerk, const simBool *selection, const simDouble *targetVel, simVoid *auxData)
Definition: v_repLib.h:390
ptrSimGetBoolParameter simGetBoolParameter
Definition: v_repLib.cpp:50
ptrSimSetObjectIntParameter simSetObjectIntParameter
Definition: v_repLib.cpp:313
ptrSimInsertPathCtrlPoints simInsertPathCtrlPoints
Definition: v_repLib.cpp:307
ptr_simGetLastParentForLocalGlobalCollidable _simGetLastParentForLocalGlobalCollidable
Definition: v_repLib.cpp:519
ptr_simGetOdeMaxContactFrictionCFMandERP _simGetOdeMaxContactFrictionCFMandERP
Definition: v_repLib.cpp:611
ptrSimMoveStackItemToTop simMoveStackItemToTop
Definition: v_repLib.cpp:449
simInt(__cdecl * ptrSimCreateJoint)(simInt jointType, simInt jointMode, simInt options, const simFloat *sizes, const simFloat *colorA, const simFloat *colorB)
Definition: v_repLib.h:324
simInt(__cdecl * ptrSimGroupShapes)(const simInt *shapeHandles, simInt shapeCount)
Definition: v_repLib.h:399
simInt(__cdecl * ptrSimGetPointCloudOptions)(simInt pointCloudHandle, simFloat *maxVoxelSize, simInt *maxPtCntPerVoxel, simInt *options, simFloat *pointSize, simVoid *reserved)
Definition: v_repLib.h:494
simInt(__cdecl * ptrSimGetUIButtonProperty)(simInt uiHandle, simInt buttonHandle)
Definition: v_repLib.h:370
ptrSimSetIkGroupProperties simSetIkGroupProperties
Definition: v_repLib.cpp:326
simInt(__cdecl * ptrSimGetJointPosition)(simInt objectHandle, simFloat *position)
Definition: v_repLib.h:100
simInt(__cdecl * ptrSimResetGraph)(simInt graphHandle)
Definition: v_repLib.h:220
simVoid(__cdecl * ptr_simGetAllGeometrics)(const simVoid *geomInfo, simVoid **allGeometrics)
Definition: v_repLib.h:585
simInt(__cdecl * ptrSimAddForceAndTorque)(simInt shapeHandle, const simFloat *force, const simFloat *torque)
Definition: v_repLib.h:286
ptrSimGetStringParameter simGetStringParameter
Definition: v_repLib.cpp:61
ptrSimSerialPortOpen simSerialPortOpen
Definition: v_repLib.cpp:584
ptrSimGetShapeTextureId simGetShapeTextureId
Definition: v_repLib.cpp:406
ptrSimReadDistance simReadDistance
Definition: v_repLib.cpp:130
ptrSimRemoveParticleObject simRemoveParticleObject
Definition: v_repLib.cpp:232
ptr_simGetDynamicMotorUpperLimitVelocity _simGetDynamicMotorUpperLimitVelocity
Definition: v_repLib.cpp:550
ptrSimLockResources simLockResources
Definition: v_repLib.cpp:386
simInt(__cdecl * ptrSimCheckProximitySensor)(simInt sensorHandle, simInt entityHandle, simFloat *detectedPoint)
Definition: v_repLib.h:183
simInt(__cdecl * ptrSimGetFloatSignal)(const simChar *signalName, simFloat *signalValue)
Definition: v_repLib.h:263
simVoid(__cdecl * ptr_simClearAdditionalForceAndTorque)(const simVoid *shape)
Definition: v_repLib.h:558
ptrSimSetShapeTexture simSetShapeTexture
Definition: v_repLib.cpp:405
ptrSimGetVisionSensorCharImage simGetVisionSensorCharImage
Definition: v_repLib.cpp:339
ptrSimGetUInt64Parameter simGetUInt64Parameter
Definition: v_repLib.cpp:55
simInt(__cdecl * ptrSimGetShapeVertex)(simInt shapeHandle, simInt groupElementIndex, simInt vertexIndex, simFloat *relativePosition)
Definition: v_repLib.h:279
simInt(__cdecl * ptrSimGetObjectOrientation)(simInt objectHandle, simInt relativeToObjectHandle, simFloat *eulerAngles)
Definition: v_repLib.h:98
simInt(__cdecl * ptrSimGetMotionPlanningHandle)(const simChar *motionPlanningObjectName)
Definition: v_repLib.h:1152
simVoid(__cdecl * ptr_simSetObjectCumulativeTransformation)(simVoid *object, const simFloat *pos, const simFloat *quat, simBool keepChildrenInPlace)
Definition: v_repLib.h:529
simFloat *(__cdecl * ptrSimFindMpPath)(simInt motionPlanningObjectHandle, const simFloat *startConfig, const simFloat *goalConfig, simInt options, simFloat stepSize, simInt *outputConfigsCnt, simInt maxTimeInMs, simFloat *reserved, const simInt *auxIntParams, const simFloat *auxFloatParams)
Definition: v_repLib.h:1154
simInt(__cdecl * ptrSimCreateIkElement)(simInt ikGroupHandle, simInt options, const simInt *intParams, const simFloat *floatParams, const simVoid *reserved)
Definition: v_repLib.h:436
simInt(__cdecl * ptrSimCallScriptFunctionEx)(simInt scriptHandleOrType, const simChar *functionNameAtScriptName, simInt stackId)
Definition: v_repLib.h:447
ptrSimSetJointInterval simSetJointInterval
Definition: v_repLib.cpp:90
simVoid(__cdecl * ptr_simSetJointPosition)(const simVoid *joint, simFloat pos)
Definition: v_repLib.h:542
simInt(__cdecl * ptrSimSetModelProperty)(simInt objectHandle, simInt modelProperty)
Definition: v_repLib.h:292
simVoid(__cdecl * ptr_simGetMotorPid)(const simVoid *joint, simFloat *pParam, simFloat *iParam, simFloat *dParam)
Definition: v_repLib.h:566
ptrSimSetSimulationPassesPerRenderingPass simSetSimulationPassesPerRenderingPass
Definition: v_repLib.cpp:320
simInt(__cdecl * ptrSimRemovePointsFromPointCloud)(simInt pointCloudHandle, simInt options, const simFloat *pts, simInt ptCnt, simFloat tolerance, simVoid *reserved)
Definition: v_repLib.h:498
ptrSimCreatePureShape simCreatePureShape
Definition: v_repLib.cpp:298
ptrSimSetIkElementProperties simSetIkElementProperties
Definition: v_repLib.cpp:327
simChar *(__cdecl * ptrSimGetScriptSimulationParameter)(simInt scriptHandle, const simChar *parameterName, simInt *parameterLength)
Definition: v_repLib.h:213
simInt(__cdecl * ptrSimGetNameSuffix)(const simChar *name)
Definition: v_repLib.h:244
simInt(__cdecl * ptrSimSetObjectIntParameter)(simInt objectHandle, simInt parameterID, simInt parameter)
Definition: v_repLib.h:334
ptrSimGetStackTableInfo simGetStackTableInfo
Definition: v_repLib.cpp:456
simInt(__cdecl * ptrSimSetIkElementProperties)(simInt ikGroupHandle, simInt tipDummyHandle, simInt constraints, const simFloat *precision, const simFloat *weight, void *reserved)
Definition: v_repLib.h:348
simInt(__cdecl * ptrSimInsertDataIntoStackTable)(simInt stackHandle)
Definition: v_repLib.h:467
simInt(__cdecl * ptrSimIsRealTimeSimulationStepNeeded)()
Definition: v_repLib.h:204
simInt(__cdecl * ptrSimSetShapeColor)(simInt shapeHandle, const simChar *colorName, simInt colorComponent, const simFloat *rgbData)
Definition: v_repLib.h:294
simInt(__cdecl * ptrSimModifyGhost)(simInt ghostGroup, simInt ghostId, simInt operation, simFloat floatValue, simInt options, simInt optionsMask, const simFloat *colorOrTransformation)
Definition: v_repLib.h:404
ptrSimScaleObjects simScaleObjects
Definition: v_repLib.cpp:220
ptrSimCreateIkGroup simCreateIkGroup
Definition: v_repLib.cpp:413
ptrSimGetScriptName simGetScriptName
Definition: v_repLib.cpp:148
simInt(__cdecl * ptrSimTubeOpen)(simInt dataHeader, const simChar *dataName, simInt readBufferSize, simBool notUsedButKeepFalse)
Definition: v_repLib.h:306
simInt(__cdecl * ptrSimLoadScene)(const simChar *filename)
Definition: v_repLib.h:131
ptr_simAddJointCumulativeForcesOrTorques _simAddJointCumulativeForcesOrTorques
Definition: v_repLib.cpp:554
ptrSimTubeWrite simTubeWrite
Definition: v_repLib.cpp:287
simInt(__cdecl * ptrSimGetJointType)(simInt objectHandle)
Definition: v_repLib.h:116
simInt(__cdecl * ptrSimSetJointTargetVelocity)(simInt objectHandle, simFloat targetVelocity)
Definition: v_repLib.h:233
ptrSimRMLVel simRMLVel
Definition: v_repLib.cpp:369
ptr_simGetIkGroupObject _simGetIkGroupObject
Definition: v_repLib.cpp:505
simInt(__cdecl * ptrSimCreateUIButtonArray)(simInt uiHandle, simInt buttonHandle)
Definition: v_repLib.h:379
ptrSimGetNavigationMode simGetNavigationMode
Definition: v_repLib.cpp:201
simInt(__cdecl * ptrSimAddObjectToCollection)(simInt collectionHandle, simInt objectHandle, simInt what, simInt options)
Definition: v_repLib.h:438
simFloat(__cdecl * ptr_simGetMass)(const simVoid *geomInfo)
Definition: v_repLib.h:591
simInt(__cdecl * ptrSimGetSceneCustomDataLength)(simInt header)
Definition: v_repLib.h:187
simInt(__cdecl * ptrSimClearIntegerSignal)(const simChar *signalName)
Definition: v_repLib.h:261
ptrSimGetSystemTimeInMilliseconds simGetSystemTimeInMilliseconds
Definition: v_repLib.cpp:108
ptrSimGetConfigForTipPose simGetConfigForTipPose
Definition: v_repLib.cpp:428
simInt(__cdecl * ptrSimGetVelocity)(simInt shapeHandle, simFloat *linearVelocity, simFloat *angularVelocity)
Definition: v_repLib.h:284
ptrSimDeleteSelectedObjects simDeleteSelectedObjects
Definition: v_repLib.cpp:221
simInt(__cdecl * ptrSimResetJoint)(simInt jointHandle)
Definition: v_repLib.h:1167
ptrSimResetDynamicObject simResetDynamicObject
Definition: v_repLib.cpp:275
simVoid(__cdecl * ptr_simSetJointSphericalTransformation)(simVoid *joint, const simFloat *quat)
Definition: v_repLib.h:572
ptr_simGetObjectLocalTransformation _simGetObjectLocalTransformation
Definition: v_repLib.cpp:507
simInt(__cdecl * ptrSimCutPathCtrlPoints)(simInt pathHandle, simInt startIndex, simInt ptCnt)
Definition: v_repLib.h:331
simInt(__cdecl * ptrSimInsertPointsIntoPointCloud)(simInt pointCloudHandle, simInt options, const simFloat *pts, simInt ptCnt, const simUChar *color, simVoid *optionalValues)
Definition: v_repLib.h:497
simInt(__cdecl * ptrSimAddObjectToSelection)(simInt what, simInt objectHandle)
Definition: v_repLib.h:143
simInt(__cdecl * ptrSimGetScriptAttribute)(simInt scriptHandle, simInt attributeID, simFloat *floatVal, simInt *intOrBoolVal)
Definition: v_repLib.h:431
ptrSimPauseSimulation simPauseSimulation
Definition: v_repLib.cpp:189
simInt(__cdecl * ptrSimGetFloatParameter)(simInt parameter, simFloat *floatState)
Definition: v_repLib.h:80
ptr_simSetDynamicJointLocalTransformationPart2 _simSetDynamicJointLocalTransformationPart2
Definition: v_repLib.cpp:555
ptrSimGetObjectMatrix simGetObjectMatrix
Definition: v_repLib.cpp:73
ptrSimAddObjectToCollection simAddObjectToCollection
Definition: v_repLib.cpp:417
ptr_simSetDynamicForceSensorLocalTransformationPart2 _simSetDynamicForceSensorLocalTransformationPart2
Definition: v_repLib.cpp:556
ptrSimReadProximitySensor simReadProximitySensor
Definition: v_repLib.cpp:132
simInt(__cdecl * ptrSimScaleObject)(simInt objectHandle, simFloat xScale, simFloat yScale, simFloat zScale, simInt options)
Definition: v_repLib.h:425
simInt(__cdecl * ptrSimGetArrayParameter)(simInt parameter, simVoid *arrayOfValues)
Definition: v_repLib.h:346
simInt(__cdecl * ptrSimSetObjectProperty)(simInt objectHandle, simInt prop)
Definition: v_repLib.h:269
simInt(__cdecl * ptrSimSetScriptSimulationParameter)(simInt scriptHandle, const simChar *parameterName, const simChar *parameterValue, simInt parameterLength)
Definition: v_repLib.h:214
ptrSimGetPathLength simGetPathLength
Definition: v_repLib.cpp:86
ptrSimPushDoubleTableOntoStack simPushDoubleTableOntoStack
Definition: v_repLib.cpp:444
ptr_simIsForceSensorBroken _simIsForceSensorBroken
Definition: v_repLib.cpp:541
simFloat(__cdecl * ptr_simGetDynamicMotorTargetPosition)(const simVoid *joint)
Definition: v_repLib.h:567
simInt(__cdecl * ptr_simGetDummyLinkType)(const simVoid *dummy, simInt *linkedDummyID)
Definition: v_repLib.h:533
ptrSimGetObjectChild simGetObjectChild
Definition: v_repLib.cpp:92
simInt(__cdecl * ptrSimSetUIButtonColor)(simInt uiHandle, simInt buttonHandle, const simFloat *upStateColor, const simFloat *downStateColor, const simFloat *labelColor)
Definition: v_repLib.h:377
ptrSimSetShapeColor simSetShapeColor
Definition: v_repLib.cpp:273
simInt(__cdecl * ptrSimSetEngineInt32Parameter)(simInt paramId, simInt objectHandle, const simVoid *object, simInt val)
Definition: v_repLib.h:489
ptrSimRemoveScript simRemoveScript
Definition: v_repLib.cpp:153
ptr_simGetJointPosition _simGetJointPosition
Definition: v_repLib.cpp:523
simInt(__cdecl * ptrSimGetUIEventButton)(simInt uiHandle, simInt *auxiliaryValues)
Definition: v_repLib.h:368
ptrSimSetBoolParameter simSetBoolParameter
Definition: v_repLib.cpp:49
ptr_simIsDynamicMotorPositionCtrlEnabled _simIsDynamicMotorPositionCtrlEnabled
Definition: v_repLib.cpp:544
ptrSimSetNameSuffix simSetNameSuffix
Definition: v_repLib.cpp:227
simInt(__cdecl * ptrSimSetIntegerSignal)(const simChar *signalName, simInt signalValue)
Definition: v_repLib.h:259
ptrSimIsRealTimeSimulationStepNeeded simIsRealTimeSimulationStepNeeded
Definition: v_repLib.cpp:183
simInt(__cdecl * ptrSimGetObjectCustomDataLength)(simInt objectHandle, simInt header)
Definition: v_repLib.h:190
ptrSimGetObjectCustomDataLength simGetObjectCustomDataLength
Definition: v_repLib.cpp:169
simVoid(__cdecl * ptr_simSetDynamicJointLocalTransformationPart2)(simVoid *joint, const simFloat *pos, const simFloat *quat)
Definition: v_repLib.h:575
ptrSimIsHandleValid simIsHandleValid
Definition: v_repLib.cpp:331
ptrSimWriteTexture simWriteTexture
Definition: v_repLib.cpp:394
simChar *(__cdecl * ptrSimGetStackStringValue)(simInt stackHandle, simInt *stringSize)
Definition: v_repLib.h:476
ptrSimEnableEventCallback simEnableEventCallback
Definition: v_repLib.cpp:388
ptr_simGetJointType _simGetJointType
Definition: v_repLib.cpp:540
ptrSimGetObjectPosition simGetObjectPosition
Definition: v_repLib.cpp:75
ptrSimSetObjectName simSetObjectName
Definition: v_repLib.cpp:67
simInt(__cdecl * ptrSimGetObjectAssociatedWithScript)(simInt scriptHandle)
Definition: v_repLib.h:168
simChar *(__cdecl * ptrSimGetStringSignal)(const simChar *signalName, simInt *stringLength)
Definition: v_repLib.h:266
ptrSimGetEulerAnglesFromMatrix simGetEulerAnglesFromMatrix
Definition: v_repLib.cpp:99
simFloat(__cdecl * ptr_simGetJointPosition)(const simVoid *joint)
Definition: v_repLib.h:543
simInt(__cdecl * ptrSimPushDoubleOntoStack)(simInt stackHandle, simDouble value)
Definition: v_repLib.h:460
ptrSimCreateBuffer simCreateBuffer
Definition: v_repLib.cpp:171
ptrSimGetObjectConfiguration simGetObjectConfiguration
Definition: v_repLib.cpp:176
simBool(__cdecl * ptr_simIsShapeDynamicallyStatic)(const simVoid *shape)
Definition: v_repLib.h:531
simInt(__cdecl * ptrSimGetStackBoolValue)(simInt stackHandle, simBool *boolValue)
Definition: v_repLib.h:472
ptrSimPushFloatTableOntoStack simPushFloatTableOntoStack
Definition: v_repLib.cpp:443
ptrSimCreateForceSensor simCreateForceSensor
Definition: v_repLib.cpp:309
simInt(__cdecl * ptrSimSetFloatSignal)(const simChar *signalName, simFloat signalValue)
Definition: v_repLib.h:262
simVoid(__cdecl * ptr_simGetInitialDynamicAngVelocity)(const simVoid *shape, simFloat *angularVel)
Definition: v_repLib.h:547
ptrSimGetObjectInt32Parameter simGetObjectInt32Parameter
Definition: v_repLib.cpp:314
simInt(__cdecl * ptrSimGetJointTargetVelocity)(simInt objectHandle, simFloat *targetVelocity)
Definition: v_repLib.h:234
LIBRARY loadVrepLibrary(const char *pathAndFilename)
Definition: v_repLib.cpp:622
ptrSimGetQuaternionFromMatrix simGetQuaternionFromMatrix
Definition: v_repLib.cpp:373
ptr_simGetJointOdeParameters _simGetJointOdeParameters
Definition: v_repLib.cpp:609
ptr_simIsJointInHybridOperation _simIsJointInHybridOperation
Definition: v_repLib.cpp:515
ptrSimSetVisionSensorCharImage simSetVisionSensorCharImage
Definition: v_repLib.cpp:341
simVoid(__cdecl * ptr_simSetObjectLocalTransformation)(simVoid *object, const simFloat *pos, const simFloat *quat)
Definition: v_repLib.h:528
ptrSimGetMainWindow simGetMainWindow
Definition: v_repLib.cpp:42
ptrSimPersistentDataRead simPersistentDataRead
Definition: v_repLib.cpp:330
simInt(__cdecl * ptrSimSerialRead)(simInt portHandle, simChar *buffer, simInt dataLengthToRead)
Definition: v_repLib.h:302
simInt(__cdecl * ptrSimSetSphericalJointMatrix)(simInt objectHandle, const simFloat *matrix)
Definition: v_repLib.h:109
simInt(__cdecl * ptrSimWriteTexture)(simInt textureId, simInt options, const simChar *data, simInt posX, simInt posY, simInt sizeX, simInt sizeY, simFloat interpol)
Definition: v_repLib.h:415
simInt(__cdecl * ptrSimGetTextureId)(const simChar *textureName, simInt *resolution)
Definition: v_repLib.h:413
ptrSimCreateJoint simCreateJoint
Definition: v_repLib.cpp:303
ptrSimGetDialogResult simGetDialogResult
Definition: v_repLib.cpp:205
simInt(__cdecl * ptr_simGetTreeDynamicProperty)(const simVoid *object)
Definition: v_repLib.h:532
simInt(__cdecl * ptrSimComputeMassAndInertia)(simInt shapeHandle, simFloat density)
Definition: v_repLib.h:452
ptrSimSetObjectConfiguration simSetObjectConfiguration
Definition: v_repLib.cpp:177
simInt(__cdecl * ptrSimGetStackInt32Table)(simInt stackHandle, simInt *array, simInt count)
Definition: v_repLib.h:479
simInt(__cdecl * ptrSimRMLPos)(simInt dofs, simDouble smallestTimeStep, simInt flags, const simDouble *currentPosVelAccel, const simDouble *maxVelAccelJerk, const simBool *selection, const simDouble *targetPosVel, simVoid *auxData)
Definition: v_repLib.h:389
simVoid(__cdecl * ptr_simGetPurePrimitiveSizes)(const simVoid *geometric, simFloat *sizes)
Definition: v_repLib.h:586
ptrSimSetJointMode simSetJointMode
Definition: v_repLib.cpp:276
ptrSimUngroupShape simUngroupShape
Definition: v_repLib.cpp:379
simInt(__cdecl * ptrSimCreateForceSensor)(simInt options, const simInt *intParams, const simFloat *floatParams, const simFloat *color)
Definition: v_repLib.h:326
ptrSimGetScriptRawBuffer simGetScriptRawBuffer
Definition: v_repLib.cpp:215
ptrSimSetEngineBoolParameter simSetEngineBoolParameter
Definition: v_repLib.cpp:469
simInt(__cdecl * ptrSimSetShapeMaterial)(simInt shapeHandle, simInt materialId)
Definition: v_repLib.h:411
simVoid(__cdecl * ptr_simSetShapeDynamicVelocity)(simVoid *shape, const simFloat *linear, const simFloat *angular)
Definition: v_repLib.h:556
simInt(__cdecl * ptrSimSetObjectInt32Parameter)(simInt objectHandle, simInt parameterID, simInt parameter)
Definition: v_repLib.h:336
ptrSimTubeOpen simTubeOpen
Definition: v_repLib.cpp:285
simChar *(__cdecl * ptrSimTubeRead)(simInt tubeHandle, simInt *dataLength)
Definition: v_repLib.h:309
simInt(__cdecl * ptrSimAuxiliaryConsoleOpen)(const simChar *title, simInt maxLines, simInt mode, const simInt *position, const simInt *size, const simFloat *textColor, const simFloat *backgroundColor)
Definition: v_repLib.h:311
simInt(__cdecl * ptrSimGetShapeMaterial)(simInt shapeHandle)
Definition: v_repLib.h:412
const void *(__cdecl * ptr_simGetContactCallback)(simInt index)
Definition: v_repLib.h:514
simInt(__cdecl * ptrSimClearScriptVariable)(const simChar *reservedSetToNull, simInt scriptHandleOrType, const simChar *variableNameAtScriptName)
Definition: v_repLib.h:1170
simInt(__cdecl * ptrSimAddDrawingObjectItem)(simInt objectHandle, const simFloat *itemData)
Definition: v_repLib.h:251
simInt(__cdecl * ptrSimGetEulerAnglesFromMatrix)(const simFloat *matrix, simFloat *eulerAngles)
Definition: v_repLib.h:120
simFloat(__cdecl * ptr_simGetBulletRestitution)(const simVoid *geomInfo)
Definition: v_repLib.h:1176
simInt(__cdecl * ptrSimCheckOctreePointOccupancy)(simInt octreeHandle, simInt options, const simFloat *points, simInt ptCnt, simUInt *tag, simUInt64 *location, simVoid *reserved)
Definition: v_repLib.h:506
simChar *(__cdecl * ptrSimReadTexture)(simInt textureId, simInt options, simInt posX, simInt posY, simInt sizeX, simInt sizeY)
Definition: v_repLib.h:414
ptr_simSetJointSphericalTransformation _simSetJointSphericalTransformation
Definition: v_repLib.cpp:552
ptrSimGetFloatParameter simGetFloatParameter
Definition: v_repLib.cpp:59
ptr_simGetVerticesLocalFrame _simGetVerticesLocalFrame
Definition: v_repLib.cpp:568
simInt(__cdecl * ptrSimGetScriptProperty)(simInt scriptHandle, simInt *scriptProperty, simInt *associatedObjectHandle)
Definition: v_repLib.h:163
ptrSimGetScriptAssociatedWithObject simGetScriptAssociatedWithObject
Definition: v_repLib.cpp:145
simInt(__cdecl * ptrSimHandleVarious)()
Definition: v_repLib.h:283
simInt(__cdecl * ptrSimGetVisionSensorResolution)(simInt visionSensorHandle, simInt *resolution)
Definition: v_repLib.h:358
ptrSimSetJointPosition simSetJointPosition
Definition: v_repLib.cpp:80
FARPROC _getProcAddress(LIBRARY lib, const char *funcName)
Definition: v_repLib.cpp:659
simBool(__cdecl * ptr_simGetBulletStickyContact)(const simVoid *geomInfo)
Definition: v_repLib.h:1175
simInt(__cdecl * ptrSimSaveUI)(int count, const int *uiHandles, const simChar *filename)
Definition: v_repLib.h:137
ptrSimRemoveUI simRemoveUI
Definition: v_repLib.cpp:361
ptrSimSetPathPosition simSetPathPosition
Definition: v_repLib.cpp:85
simInt(__cdecl * ptrSimGetObjectInt32Parameter)(simInt objectHandle, simInt parameterID, simInt *parameter)
Definition: v_repLib.h:335
ptrSimCheckProximitySensor simCheckProximitySensor
Definition: v_repLib.cpp:162
simVoid(__cdecl * ptr_simGetDamping)(const simVoid *geomInfo, simFloat *linDamping, simFloat *angDamping)
Definition: v_repLib.h:1179
simInt(__cdecl * ptrSimCheckDistance)(simInt entity1Handle, simInt entity2Handle, simFloat threshold, simFloat *distanceData)
Definition: v_repLib.h:196
ptr_simGetJointMode _simGetJointMode
Definition: v_repLib.cpp:514
ptrSimSetExplicitHandling simSetExplicitHandling
Definition: v_repLib.cpp:267
ptrSimGetCollectionName simGetCollectionName
Definition: v_repLib.cpp:71
ptrSimHandleMechanism simHandleMechanism
Definition: v_repLib.cpp:138
simInt(__cdecl * ptrSimAuxiliaryConsolePrint)(simInt consoleHandle, const simChar *text)
Definition: v_repLib.h:314
simInt(__cdecl * ptrSimCreateUIButton)(simInt uiHandle, const simInt *position, const simInt *size, simInt buttonProperty)
Definition: v_repLib.h:365
simInt(__cdecl * ptrSimIntersectPointsWithPointCloud)(simInt pointCloudHandle, simInt options, const simFloat *pts, simInt ptCnt, simFloat tolerance, simVoid *reserved)
Definition: v_repLib.h:499
simInt(__cdecl * ptrSimSubtractObjectFromPointCloud)(simInt pointCloudHandle, simInt objectHandle, simInt options, simFloat tolerance, simVoid *reserved)
Definition: v_repLib.h:505
simInt(__cdecl * ptrSimSetNameSuffix)(simInt nameSuffixNumber)
Definition: v_repLib.h:248
simInt(__cdecl * ptrSimSetJointTargetPosition)(simInt objectHandle, simFloat targetPosition)
Definition: v_repLib.h:102
ptr_simGetAllGeometrics _simGetAllGeometrics
Definition: v_repLib.cpp:565
ptrSimCheckVisionSensor simCheckVisionSensor
Definition: v_repLib.cpp:335
ptrSimRMLStep simRMLStep
Definition: v_repLib.cpp:370
ptrSimInsertObjectIntoOctree simInsertObjectIntoOctree
Definition: v_repLib.cpp:481
ptrSimGetMechanismHandle simGetMechanismHandle
Definition: v_repLib.cpp:137
simInt(__cdecl * ptrSimGetSystemTimeInMilliseconds)()
Definition: v_repLib.h:129
ptrSimHandleProximitySensor simHandleProximitySensor
Definition: v_repLib.cpp:131
ptrSimInvertMatrix simInvertMatrix
Definition: v_repLib.cpp:100
ptrSimReadVisionSensor simReadVisionSensor
Definition: v_repLib.cpp:333
simVoid(__cdecl * ptr_simGetVortexParameters)(const simVoid *object, simInt version, simFloat *floatParams, simInt *intParams)
Definition: v_repLib.h:1177
simInt(__cdecl * ptrSimInterpolateMatrices)(const simFloat *matrixIn1, const simFloat *matrixIn2, simFloat interpolFactor, simFloat *matrixOut)
Definition: v_repLib.h:123
ptrSimSetGraphUserData simSetGraphUserData
Definition: v_repLib.cpp:226
simInt(__cdecl * ptrSimCreatePath)(simInt attributes, const simInt *intParams, const simFloat *floatParams, const simFloat *color)
Definition: v_repLib.h:329
simInt(__cdecl * ptrSimCreateTexture)(const simChar *fileName, simInt options, const simFloat *planeSizes, const simFloat *scalingUV, const simFloat *xy_g, simInt fixedResolution, simInt *textureId, simInt *resolution, const simVoid *reserved)
Definition: v_repLib.h:416
ptr_simGetFriction _simGetFriction
Definition: v_repLib.cpp:618
ptrSimFileDialog simFileDialog
Definition: v_repLib.cpp:374
simInt(__cdecl * ptrSimGetOrientationOnPath)(simInt pathHandle, simFloat relativeDistance, simFloat *eulerAngles)
Definition: v_repLib.h:274
simInt(__cdecl * ptrSimIsStackValueNull)(simInt stackHandle)
Definition: v_repLib.h:471
simInt(__cdecl * ptrSimLockResources)(simInt lockType, simInt reserved)
Definition: v_repLib.h:407
simInt(__cdecl * ptrSimTubeStatus)(simInt tubeHandle, simInt *readPacketsCount, simInt *writePacketsCount)
Definition: v_repLib.h:310
simInt(__cdecl * ptrSimReservedCommand)(simInt v, simInt w)
Definition: v_repLib.h:125
ptrSimGetStackInt32Table simGetStackInt32Table
Definition: v_repLib.cpp:458
ptrSimGetJointTargetPosition simGetJointTargetPosition
Definition: v_repLib.cpp:82
simInt(__cdecl * ptrSimGetJointTargetPosition)(simInt objectHandle, simFloat *targetPosition)
Definition: v_repLib.h:103
ptrSimCheckDistance simCheckDistance
Definition: v_repLib.cpp:175
ptr_simMpHandleIkGroupObject _simMpHandleIkGroupObject
Definition: v_repLib.cpp:506
simInt(__cdecl * ptrSimHandleGraph)(simInt graphHandle, simFloat simulationTime)
Definition: v_repLib.h:219
ptrSimSetPathTargetNominalVelocity simSetPathTargetNominalVelocity
Definition: v_repLib.cpp:214
ptrSimGetShapeMassAndInertia simGetShapeMassAndInertia
Definition: v_repLib.cpp:377
simInt(__cdecl * ptrSimInitializePathSearch)(simInt pathPlanningObjectHandle, simFloat maximumSearchTime, simFloat searchTimeStep)
Definition: v_repLib.h:1161
simInt(__cdecl * ptrSimGetObjectSizeValues)(simInt objectHandle, simFloat *sizeValues)
Definition: v_repLib.h:424
ptrSimAuxiliaryConsoleShow simAuxiliaryConsoleShow
Definition: v_repLib.cpp:292
ptr_simGetJointCallbackCallOrder _simGetJointCallbackCallOrder
Definition: v_repLib.cpp:580
simUInt(__cdecl * ptrSimGetSystemTimeInMs)(simInt previousTime)
Definition: v_repLib.h:130
ptrSimResetMilling simResetMilling
Definition: v_repLib.cpp:236
ptrSimGetMpConfigForTipPose simGetMpConfigForTipPose
Definition: v_repLib.cpp:591
ptrSimPersistentDataWrite simPersistentDataWrite
Definition: v_repLib.cpp:329
simFloat(__cdecl * ptr_simGetDynamicMotorMaxForce)(const simVoid *joint)
Definition: v_repLib.h:569
ptrSimGetInt32Parameter simGetInt32Parameter
Definition: v_repLib.cpp:54
ptrSimInterpolateMatrices simInterpolateMatrices
Definition: v_repLib.cpp:102
ptrSimSetModuleMenuItemState simSetModuleMenuItemState
Definition: v_repLib.cpp:119
simInt(__cdecl * ptrSimCreateIkGroup)(simInt options, const simInt *intParams, const simFloat *floatParams, const simVoid *reserved)
Definition: v_repLib.h:434
simChar *(__cdecl * ptrSimPackTable)(simInt stackHandle, simInt *bufferSize)
Definition: v_repLib.h:508
simInt(__cdecl * ptrSimGetFloatingParameter)(simInt parameter, simFloat *floatState)
Definition: v_repLib.h:78
simVoid(__cdecl * ptr_simGetDynamicForceSensorLocalTransformationPart2)(const simVoid *forceSensor, simFloat *pos, simFloat *quat)
Definition: v_repLib.h:562
ptrSimSendModuleMessage simSendModuleMessage
Definition: v_repLib.cpp:46
ptrSimSerialPortSend simSerialPortSend
Definition: v_repLib.cpp:586
ptr_simGetGeomProxyDynamicsFullRefreshFlag _simGetGeomProxyDynamicsFullRefreshFlag
Definition: v_repLib.cpp:534
simVoid *(__cdecl * ptrSimBroadcastMessage)(simInt *auxiliaryData, simVoid *customData, simInt *replyData)
Definition: v_repLib.h:211
simInt(__cdecl * ptrSimHandleMainScript)()
Definition: v_repLib.h:170
simInt(__cdecl * ptrSimAuxiliaryConsoleShow)(simInt consoleHandle, simBool showState)
Definition: v_repLib.h:313
ptrSimGetConfigurationTree simGetConfigurationTree
Definition: v_repLib.cpp:178
ptr_simSetDynamicSimulationIconCode _simSetDynamicSimulationIconCode
Definition: v_repLib.cpp:495
simVoid(__cdecl * ptr_simSetGeomProxyDynamicsFullRefreshFlag)(simVoid *geomData, simBool flag)
Definition: v_repLib.h:553
ptrSimGetStackFloatTable simGetStackFloatTable
Definition: v_repLib.cpp:459
simInt(__cdecl * ptrSimAddSceneCustomData)(simInt header, const simChar *data, simInt dataLength)
Definition: v_repLib.h:186
simInt(__cdecl * ptrSimGetObjectIntParameter)(simInt objectHandle, simInt parameterID, simInt *parameter)
Definition: v_repLib.h:333
ptrSimClearIntegerSignal simClearIntegerSignal
Definition: v_repLib.cpp:240
simInt(__cdecl * ptrSimGetObjectProperty)(simInt objectHandle)
Definition: v_repLib.h:270
simInt(__cdecl * ptrSimAnnounceSceneContentChange)()
Definition: v_repLib.h:256
ptrSimPushDoubleOntoStack simPushDoubleOntoStack
Definition: v_repLib.cpp:439
ptrSimLoadScene simLoadScene
Definition: v_repLib.cpp:110
ptrSimCreateProximitySensor simCreateProximitySensor
Definition: v_repLib.cpp:305
simInt(__cdecl * ptrSimClearFloatSignal)(const simChar *signalName)
Definition: v_repLib.h:264
ptrSimRMLVelocity simRMLVelocity
Definition: v_repLib.cpp:367
simInt(__cdecl * ptrSimAddBanner)(const simChar *label, simFloat size, simInt options, const simFloat *positionAndEulerAngles, simInt parentObjectHandle, const simFloat *labelColors, const simFloat *backgroundColors)
Definition: v_repLib.h:322
ptr_simSetShapeIsStaticAndNotRespondableButDynamicTag _simSetShapeIsStaticAndNotRespondableButDynamicTag
Definition: v_repLib.cpp:520
simInt(__cdecl * ptrSimGetObjectFloatParameter)(simInt objectHandle, simInt parameterID, simFloat *parameter)
Definition: v_repLib.h:337
simInt(__cdecl * ptrSimStopSimulation)()
Definition: v_repLib.h:209
simInt(__cdecl * ptrSimLockInterface)(simBool locked)
Definition: v_repLib.h:1163
ptrSimGetShapeMesh simGetShapeMesh
Definition: v_repLib.cpp:300
ptrSimGetSimulationTimeStep simGetSimulationTimeStep
Definition: v_repLib.cpp:181
simBool(__cdecl * ptr_simGetDynamicsFullRefreshFlag)(const simVoid *object)
Definition: v_repLib.h:551
simInt(__cdecl * ptrSimSetShapeMassAndInertia)(simInt shapeHandle, simFloat mass, const simFloat *inertiaMatrix, const simFloat *centerOfMass, const simFloat *transformation)
Definition: v_repLib.h:397
ptrSimUnpackTable simUnpackTable
Definition: v_repLib.cpp:488
simInt(__cdecl * ptrSimLoadModel)(const simChar *filename)
Definition: v_repLib.h:134
simInt(__cdecl * ptrSimSetScriptVariable)(simInt scriptHandleOrType, const simChar *variableNameAtScriptName, simInt stackHandle)
Definition: v_repLib.h:484
ptrSimGetLastError simGetLastError
Definition: v_repLib.cpp:43
ptrSimGetObjectSpecialProperty simGetObjectSpecialProperty
Definition: v_repLib.cpp:251
ptrSimSerialCheck simSerialCheck
Definition: v_repLib.cpp:282
simInt(__cdecl * ptrSimInsertVoxelsIntoOctree)(simInt octreeHandle, simInt options, const simFloat *pts, simInt ptCnt, const simUChar *color, const simUInt *tag, simVoid *reserved)
Definition: v_repLib.h:495
ptr_simGetStartSleeping _simGetStartSleeping
Definition: v_repLib.cpp:529
simInt(__cdecl * ptrSimGetSimulationState)()
Definition: v_repLib.h:127
simInt(__cdecl * ptrSimSetPathPosition)(simInt objectHandle, simFloat position)
Definition: v_repLib.h:106
ptr_simIsShapeDynamicallyRespondable _simIsShapeDynamicallyRespondable
Definition: v_repLib.cpp:517
int getVrepProcAddresses(LIBRARY lib)
Definition: v_repLib.cpp:672
simVoid(__cdecl * ptr_simGetGravity)(simFloat *gravity)
Definition: v_repLib.h:593
ptrSimCopyPasteObjects simCopyPasteObjects
Definition: v_repLib.cpp:218
simVoid(__cdecl * ptr_simGetLocalInertiaFrame)(const simVoid *geomInfo, simFloat *pos, simFloat *quat)
Definition: v_repLib.h:580
ptrSimInsertVoxelsIntoOctree simInsertVoxelsIntoOctree
Definition: v_repLib.cpp:474
simInt(__cdecl * ptrSimIsObjectInSelection)(simInt objectHandle)
Definition: v_repLib.h:142
ptrSimRemoveCollection simRemoveCollection
Definition: v_repLib.cpp:69
ptrSimCheckIkGroup simCheckIkGroup
Definition: v_repLib.cpp:135
simFloat(__cdecl * ptr_simGetPureHollowScaling)(const simVoid *geometric)
Definition: v_repLib.h:599
simInt(__cdecl * ptrSimRemoveScript)(simInt scriptHandle)
Definition: v_repLib.h:174
ptrSimGetObjectQuaternion simGetObjectQuaternion
Definition: v_repLib.cpp:364
ptrSimGetUIHandle simGetUIHandle
Definition: v_repLib.cpp:345
ptrSimSerialRead simSerialRead
Definition: v_repLib.cpp:281
ptrSimGetStringSignal simGetStringSignal
Definition: v_repLib.cpp:245
simInt(__cdecl * ptrSimInsertObjectIntoOctree)(simInt octreeHandle, simInt objectHandle, simInt options, const simUChar *color, simUInt tag, simVoid *reserved)
Definition: v_repLib.h:502
simInt(__cdecl * ptrSimScaleSelectedObjects)(simFloat scalingFactor, simBool scalePositionsToo)
Definition: v_repLib.h:240
ptrSimSetObjectPosition simSetObjectPosition
Definition: v_repLib.cpp:76
simInt(__cdecl * ptrSimCameraFitToView)(simInt viewHandleOrIndex, simInt objectCount, const simInt *objectHandles, simInt options, simFloat scaling)
Definition: v_repLib.h:349
simVoid(__cdecl * ptr_simSetDynamicMotorPositionControlTargetPosition)(const simVoid *joint, simFloat pos)
Definition: v_repLib.h:544
simInt(__cdecl * ptrSimSwitchThread)()
Definition: v_repLib.h:433
ptrSimGetShapeMaterial simGetShapeMaterial
Definition: v_repLib.cpp:391
simFloat *(__cdecl * ptrSimGetIkGroupMatrix)(simInt ikGroupHandle, simInt options, simInt *matrixSize)
Definition: v_repLib.h:402
simFloat(__cdecl * ptrSimGetEngineFloatParameter)(simInt paramId, simInt objectHandle, const simVoid *object, simBool *ok)
Definition: v_repLib.h:485
simInt(__cdecl * ptrSimHandleVisionSensor)(simInt visionSensorHandle, simFloat **auxValues, simInt **auxValuesCount)
Definition: v_repLib.h:353
ptrSimFloatingViewAdd simFloatingViewAdd
Definition: v_repLib.cpp:194
simInt(__cdecl * ptrSimPushFloatTableOntoStack)(simInt stackHandle, const simFloat *values, simInt valueCnt)
Definition: v_repLib.h:464
ptrSimSetIntegerParameter simSetIntegerParameter
Definition: v_repLib.cpp:51
ptrSimSetThreadIsFree simSetThreadIsFree
Definition: v_repLib.cpp:284
simInt(__cdecl * ptrSimSetBoolParameter)(simInt parameter, simBool boolState)
Definition: v_repLib.h:70
simInt(__cdecl * ptrSimEnableEventCallback)(simInt eventCallbackType, const simChar *plugin, simInt reserved)
Definition: v_repLib.h:409
simInt(__cdecl * ptrSimRMLStep)(simInt handle, simDouble timeStep, simDouble *newPosVelAccel, simVoid *auxData, simVoid *reserved)
Definition: v_repLib.h:391
ptrSimAddStatusbarMessage simAddStatusbarMessage
Definition: v_repLib.cpp:117
ptrSimGetJointMatrix simGetJointMatrix
Definition: v_repLib.cpp:87
ptr_simGetDynamicMotorTargetVelocity _simGetDynamicMotorTargetVelocity
Definition: v_repLib.cpp:548
simInt(__cdecl * ptrSimHandleDistance)(simInt distanceObjectHandle, simFloat *smallestDistance)
Definition: v_repLib.h:150
ptrSimReleaseScriptRawBuffer simReleaseScriptRawBuffer
Definition: v_repLib.cpp:217
ptrSimGetShapeTriangle simGetShapeTriangle
Definition: v_repLib.cpp:259
ptrSimGetPointCloudPoints simGetPointCloudPoints
Definition: v_repLib.cpp:480
simInt(__cdecl * ptrSimPushInt32OntoStack)(simInt stackHandle, simInt value)
Definition: v_repLib.h:458
ptrSimGetStackUInt8Table simGetStackUInt8Table
Definition: v_repLib.cpp:457
simInt(__cdecl * ptrSimSetUIButtonArrayColor)(simInt uiHandle, simInt buttonHandle, const simInt *position, const simFloat *color)
Definition: v_repLib.h:380
simInt(__cdecl * ptrSimSetScriptText)(simInt scriptHandle, const simChar *scriptText)
Definition: v_repLib.h:161
simInt(__cdecl * ptrSimGetObjectMatrix)(simInt objectHandle, simInt relativeToObjectHandle, simFloat *matrix)
Definition: v_repLib.h:94
ptrSimRegisterContactCallback simRegisterContactCallback
Definition: v_repLib.cpp:311
simInt(__cdecl * ptrSimCopyPasteSelectedObjects)()
Definition: v_repLib.h:1164
simInt(__cdecl * ptrSimGetObjectVelocity)(simInt objectHandle, simFloat *linearVelocity, simFloat *angularVelocity)
Definition: v_repLib.h:285
ptr_simGetNewtonParameters _simGetNewtonParameters
Definition: v_repLib.cpp:616
simInt(__cdecl * ptrSimSetLightParameters)(simInt objectHandle, simInt state, const simFloat *setToNULL, const simFloat *diffusePart, const simFloat *specularPart)
Definition: v_repLib.h:281
ptr_simGetGeomProxyFromShape _simGetGeomProxyFromShape
Definition: v_repLib.cpp:502
ptrSimSerialPortRead simSerialPortRead
Definition: v_repLib.cpp:587
simInt(__cdecl * ptrSimSetObjectStringParameter)(simInt objectHandle, simInt parameterID, simChar *parameter, simInt parameterLength)
Definition: v_repLib.h:340
simInt(__cdecl * ptrSimHandleIkGroup)(simInt ikGroupHandle)
Definition: v_repLib.h:155
const float *(__cdecl * ptrSimGetPointCloudPoints)(simInt pointCloudHandle, simInt *ptCnt, simVoid *reserved)
Definition: v_repLib.h:501
simInt(__cdecl * ptrSimSetNavigationMode)(simInt navigationMode)
Definition: v_repLib.h:221
ptrSimSetObjectProperty simSetObjectProperty
Definition: v_repLib.cpp:248
simInt(__cdecl * ptrSimRMLVelocity)(simInt dofs, simDouble timeStep, simInt flags, const simDouble *currentPosVelAccel, const simDouble *maxAccelJerk, const simBool *selection, const simDouble *targetVel, simDouble *newPosVelAccel, simVoid *auxData)
Definition: v_repLib.h:388
simInt(__cdecl * ptrSimGetEngineInt32Parameter)(simInt paramId, simInt objectHandle, const simVoid *object, simBool *ok)
Definition: v_repLib.h:486
simChar *(__cdecl * ptrSimGetObjectStringParameter)(simInt objectHandle, simInt parameterID, simInt *parameterLength)
Definition: v_repLib.h:339
ptrSimOpenTextEditor simOpenTextEditor
Definition: v_repLib.cpp:486
ptrSimSetPage simSetPage
Definition: v_repLib.cpp:202
ptrSimSetModelProperty simSetModelProperty
Definition: v_repLib.cpp:271
ptr_simGetPurePrimitiveType _simGetPurePrimitiveType
Definition: v_repLib.cpp:561
simInt(__cdecl * ptrSimExportIk)(const simChar *pathAndFilename, simInt reserved1, simVoid *reserved2)
Definition: v_repLib.h:445
simUChar *(__cdecl * ptrSimGetVisionSensorCharImage)(simInt visionSensorHandle, simInt *resolutionX, simInt *resolutionY)
Definition: v_repLib.h:360
simFloat *(__cdecl * ptrSimGetVisionSensorDepthBuffer)(simInt visionSensorHandle)
Definition: v_repLib.h:363
ptr_simMakeDynamicAnnouncement _simMakeDynamicAnnouncement
Definition: v_repLib.cpp:567
simBool(__cdecl * ptr_simIsDynamicMotorTorqueModulationEnabled)(const simVoid *joint)
Definition: v_repLib.h:565
ptrSimGetScriptText simGetScriptText
Definition: v_repLib.cpp:141
simInt(__cdecl * ptrSimGetDataOnPath)(simInt pathHandle, simFloat relativeDistance, simInt dataType, simInt *intData, simFloat *floatData)
Definition: v_repLib.h:275
simInt(__cdecl * ptrSimAddGhost)(simInt ghostGroup, simInt objectHandle, simInt options, simFloat startTime, simFloat endTime, const simFloat *color)
Definition: v_repLib.h:403
ptrSimAddObjectToSelection simAddObjectToSelection
Definition: v_repLib.cpp:122
simInt(__cdecl * ptrSimSerialPortSend)(simInt portNumber, const simChar *data, simInt dataLength)
Definition: v_repLib.h:1148
ptrSimGetCustomizationScriptAssociatedWithObject simGetCustomizationScriptAssociatedWithObject
Definition: v_repLib.cpp:146
simInt(__cdecl * ptrSimReadCollision)(simInt collisionObjectHandle)
Definition: v_repLib.h:149
simInt(__cdecl * ptrSimAdvanceSimulationByOneStep)()
Definition: v_repLib.h:207
simChar *(__cdecl * ptrSimGetScriptRawBuffer)(simInt scriptHandle, simInt bufferHandle)
Definition: v_repLib.h:236
simInt(__cdecl * ptrSimGetJointMode)(simInt jointHandle, simInt *options)
Definition: v_repLib.h:298
ptrSimSetUIButtonTexture simSetUIButtonTexture
Definition: v_repLib.cpp:357
simBool(__cdecl * ptr_simGetWasPutToSleepOnce)(const simVoid *shape)
Definition: v_repLib.h:550
simChar *(__cdecl * ptrSimReceiveData)(simInt dataHeader, const simChar *dataName, simInt antennaHandle, simInt index, simInt *dataLength, simInt *senderID, simInt *dataHeaderR, simChar **dataNameR)
Definition: v_repLib.h:246
simChar *(__cdecl * ptrSimFileDialog)(simInt mode, const simChar *title, const simChar *startPath, const simChar *initName, const simChar *extName, const simChar *ext)
Definition: v_repLib.h:395
ptrSimBuildMatrix simBuildMatrix
Definition: v_repLib.cpp:98
simInt(__cdecl * ptrSimSetPointCloudOptions)(simInt pointCloudHandle, simFloat maxVoxelSize, simInt maxPtCntPerVoxel, simInt options, simFloat pointSize, simVoid *reserved)
Definition: v_repLib.h:493
ptrSimGetTextureId simGetTextureId
Definition: v_repLib.cpp:392
ptrSimGetCollectionHandle simGetCollectionHandle
Definition: v_repLib.cpp:68
simInt(__cdecl * ptrSimCreateMeshShape)(simInt options, simFloat shadingAngle, const simFloat *vertices, simInt verticesSize, const simInt *indices, simInt indicesSize, simFloat *reserved)
Definition: v_repLib.h:318
ptrSimHandleJoint simHandleJoint
Definition: v_repLib.cpp:606
simInt(__cdecl * ptrSimRemoveBanner)(simInt bannerID)
Definition: v_repLib.h:323
simVoid(__cdecl * ptrSimQuitSimulator)(simBool doNotDisplayMessages)
Definition: v_repLib.h:405
ptrSimGetEngineFloatParameter simGetEngineFloatParameter
Definition: v_repLib.cpp:464