File size: 41,349 Bytes
0c51b93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 |
#include <bindings/main.cpp>
#include "opengl/shader.h"
char rope_path[100];
char box_high_path[100];
char sphere_path[100];
char *make_path(char *full_path, std::string path) {
strcpy(full_path, getenv("PYFLEXROOT"));
strcat(full_path, path.c_str());
return full_path;
}
void pyflex_init(bool headless=false, bool render=true, int camera_width=720, int camera_height=720) {
g_screenWidth = camera_width;
g_screenHeight = camera_height;
g_headless = headless;
g_render = render;
if (g_headless) {
g_interop = false;
g_pause = false;
}
g_scenes.push_back(new SoftgymCloth("Softgym Flag Cloth"));
g_scenes.push_back(new SoftgymFluid("Softgym Pour Water"));
g_scenes.push_back(new SoftgymRope("Softgym Rope"));
g_scenes.push_back(new SoftgymRigidCloth("Softgym Rigid Cloth"));
g_scenes.push_back(new SoftgymTorus("Softgym Torus"));
SoftgymSoftBody::Instance rope(make_path(rope_path, "/data/rope.obj"));
rope.mScale = Vec3(50.0f);
rope.mClusterSpacing = 1.5f;
rope.mClusterRadius = 0.0f;
rope.mClusterStiffness = 0.55f;
rope.mTranslation = Vec3(0.0f, 0.6f, 0.0f);
SoftgymSoftBody* softRopeSceneNew = new SoftgymSoftBody("Soft Rope");
softRopeSceneNew->AddInstance(rope);
g_scenes.push_back(softRopeSceneNew);
SoftgymSoftBody::Instance stackBox(make_path(box_high_path, "/data/box_high.ply"));
stackBox.mScale = Vec3(10.0f);
stackBox.mClusterSpacing = 1.5f;
stackBox.mClusterRadius = 0.0f;
stackBox.mClusterStiffness = 0.0f;
stackBox.mGlobalStiffness = 1.0f;
stackBox.mClusterPlasticThreshold = 0.005f;
stackBox.mClusterPlasticCreep = 0.25f;
stackBox.mTranslation.y = 0.5f;
SoftgymSoftBody::Instance stackSphere(make_path(sphere_path, "/data/sphere.ply"));
stackSphere.mScale = Vec3(10.0f);
stackSphere.mClusterSpacing = 1.5f;
stackSphere.mClusterRadius = 0.0f;
stackSphere.mClusterStiffness = 0.0f;
stackSphere.mGlobalStiffness = 1.0f;
stackSphere.mClusterPlasticThreshold = 0.0015f;
stackSphere.mClusterPlasticCreep = 0.25f;
stackSphere.mTranslation.y = 2.0f;
auto *softgym_PlasticDough = new SoftgymSoftBody("Plastic Stack");
softgym_PlasticDough->AddInstance(stackBox);
// softgym_PlasticDough->AddInstance(stackSphere);
// for (int i = 0; i < 3; i++) {
// stackBox.mTranslation.y += 2.0f;
// stackSphere.mTranslation.y += 2.0f;
// softgym_PlasticDough->AddInstance(stackBox);
// softgym_PlasticDough->AddInstance(stackSphere);
// }
g_scenes.push_back(softgym_PlasticDough);
switch (g_graphics) {
case 0:
break;
case 1:
break;
case 2:
// workaround for a driver issue with D3D12 with msaa, force it to off
// options.numMsaaSamples = 1;
// Currently interop doesn't work on d3d12
g_interop = false;
break;
default:
assert(0);
}
// Create the demo context
CreateDemoContext(g_graphics);
std::string str;
str = "Flex Demo (Compute: CUDA) ";
switch (g_graphics) {
case 0:
str += "(Graphics: OpenGL)";
break;
case 1:
str += "(Graphics: DX11)";
break;
case 2:
str += "(Graphics: DX12)";
break;
}
const char *title = str.c_str();
if (!g_headless) {
SDLInit(title);
// init graphics
RenderInitOptions options;
options.window = g_window;
options.numMsaaSamples = g_msaaSamples;
options.asyncComputeBenchmark = g_asyncComputeBenchmark;
options.defaultFontHeight = -1;
options.fullscreen = g_fullscreen;
InitRender(options);
// if (g_fullscreen)
// SDL_SetWindowFullscreen(g_window, SDL_WINDOW_FULLSCREEN_DESKTOP);
ReshapeWindow(g_screenWidth, g_screenHeight);
}
else if (g_render == true)
{
RenderInitOptions options;
options.numMsaaSamples = g_msaaSamples;
InitRenderHeadless(options, g_screenWidth, g_screenHeight);
g_fluidRenderer = CreateFluidRenderer(g_screenWidth, g_screenHeight);
}
NvFlexInitDesc desc;
desc.deviceIndex = g_device;
desc.enableExtensions = g_extensions;
desc.renderDevice = 0;
desc.renderContext = 0;
desc.computeContext = 0;
desc.computeType = eNvFlexCUDA;
// Init Flex library, note that no CUDA methods should be called before this
// point to ensure we get the device context we want
g_flexLib = NvFlexInit(NV_FLEX_VERSION, ErrorCallback, &desc);
if (g_Error || g_flexLib == nullptr) {
printf("Could not initialize Flex, exiting.\n");
exit(-1);
}
// store device name
strcpy(g_deviceName, NvFlexGetDeviceName(g_flexLib));
printf("Compute Device: %s\n\n", g_deviceName);
if (g_benchmark)
g_scene = BenchmarkInit();
// create shadow maps
if (g_render) {
g_shadowMap = ShadowCreate();
}
// init default scene
// StartGpuWork();
// Init(g_scene);
// EndGpuWork();
printf("Pyflex init done!\n");
}
void pyflex_clean() {
if (g_fluidRenderer)
DestroyFluidRenderer(g_fluidRenderer);
DestroyFluidRenderBuffers(g_fluidRenderBuffers);
DestroyDiffuseRenderBuffers(g_diffuseRenderBuffers);
ShadowDestroy(g_shadowMap);
Shutdown();
if (g_headless == false)
{
DestroyRender();
SDL_DestroyWindow(g_window);
SDL_Quit();
}
}
int main() {
pyflex_init();
pyflex_clean();
return 0;
}
void SDL_EventFunc() {
SDL_Event e;
while (SDL_PollEvent(&e)) {
switch (e.type) {
case SDL_QUIT:
break;
case SDL_KEYDOWN:
InputArrowKeysDown(e.key.keysym.sym, 0, 0);
InputKeyboardDown(e.key.keysym.sym, 0, 0);
break;
case SDL_KEYUP:
if (e.key.keysym.sym < 256 && (e.key.keysym.mod == 0 || (e.key.keysym.mod & KMOD_NUM)))
InputKeyboardUp(e.key.keysym.sym, 0, 0);
InputArrowKeysUp(e.key.keysym.sym, 0, 0);
break;
case SDL_MOUSEMOTION:
if (e.motion.state)
MouseMotionFunc(e.motion.state, e.motion.x, e.motion.y);
else
MousePassiveMotionFunc(e.motion.x, e.motion.y);
break;
case SDL_MOUSEBUTTONDOWN:
case SDL_MOUSEBUTTONUP:
MouseFunc(e.button.button, e.button.state, e.motion.x, e.motion.y);
break;
case SDL_WINDOWEVENT:
if (e.window.windowID == g_windowId) {
if (e.window.event == SDL_WINDOWEVENT_SIZE_CHANGED)
ReshapeWindow(e.window.data1, e.window.data2);
}
break;
case SDL_WINDOWEVENT_LEAVE:
g_camVel = Vec3(0.0f, 0.0f, 0.0f);
break;
case SDL_CONTROLLERBUTTONUP:
case SDL_CONTROLLERBUTTONDOWN:
ControllerButtonEvent(e.cbutton);
break;
case SDL_JOYDEVICEADDED:
case SDL_JOYDEVICEREMOVED:
ControllerDeviceUpdate();
break;
}
}
}
void pyflex_step(py::array_t<float> update_params, int capture, char *path, int render) {
int temp_render = g_render;
g_render = render;
if (capture == 1) {
g_capture = true;
g_ffmpeg = fopen(path, "wb");
}
UpdateFrame(update_params);
SDL_EventFunc();
if (capture == 1) {
g_capture = false;
fclose(g_ffmpeg);
g_ffmpeg = nullptr;
}
g_render = temp_render;
}
float rand_float(float LO, float HI) {
return LO + static_cast <float> (rand()) / (static_cast <float> (RAND_MAX / (HI - LO)));
}
void pyflex_set_scene(int scene_idx, py::array_t<float> scene_params, int thread_idx = 0) {
g_scene = scene_idx;
g_selectedScene = g_scene;
Init(g_selectedScene, scene_params, true, thread_idx);
}
void pyflex_MapShapeBuffers(SimBuffers *buffers) {
buffers->shapeGeometry.map();
buffers->shapePositions.map();
buffers->shapeRotations.map();
buffers->shapePrevPositions.map();
buffers->shapePrevRotations.map();
buffers->shapeFlags.map();
}
void pyflex_UnmapShapeBuffers(SimBuffers *buffers) {
buffers->shapeGeometry.unmap();
buffers->shapePositions.unmap();
buffers->shapeRotations.unmap();
buffers->shapePrevPositions.unmap();
buffers->shapePrevRotations.unmap();
buffers->shapeFlags.unmap();
}
void pyflex_add_capsule(py::array_t<float> params, py::array_t<float> lower_pos, py::array_t<float> quat_) {
pyflex_MapShapeBuffers(g_buffers);
auto ptr_params = (float *) params.request().ptr;
float capsule_radius = ptr_params[0];
float halfheight = ptr_params[1];
auto ptr_lower_pos = (float *) lower_pos.request().ptr;
Vec3 lower_position = Vec3(ptr_lower_pos[0], ptr_lower_pos[1], ptr_lower_pos[2]);
auto ptr_quat = (float *) quat_.request().ptr;
Quat quat = Quat(ptr_quat[0], ptr_quat[1], ptr_quat[2], ptr_quat[3]);
AddCapsule(capsule_radius, halfheight, lower_position, quat);
pyflex_UnmapShapeBuffers(g_buffers);
}
void pyflex_add_box(py::array_t<float> halfEdge_, py::array_t<float> center_, py::array_t<float> quat_, int trigger) {
pyflex_MapShapeBuffers(g_buffers);
auto ptr_halfEdge = (float *) halfEdge_.request().ptr;
Vec3 halfEdge = Vec3(ptr_halfEdge[0], ptr_halfEdge[1], ptr_halfEdge[2]);
auto ptr_center = (float *) center_.request().ptr;
Vec3 center = Vec3(ptr_center[0], ptr_center[1], ptr_center[2]);
auto ptr_quat = (float *) quat_.request().ptr;
Quat quat = Quat(ptr_quat[0], ptr_quat[1], ptr_quat[2], ptr_quat[3]);
// cout << "trigger is " << trigger << endl;
AddBox(halfEdge, center, quat, trigger);
pyflex_UnmapShapeBuffers(g_buffers);
}
void pyflex_pop_box(int num) {
pyflex_MapShapeBuffers(g_buffers);
PopBox(num);
pyflex_UnmapShapeBuffers(g_buffers);
}
void pyflex_add_sphere(float radius, py::array_t<float> position_, py::array_t<float> quat_) {
pyflex_MapShapeBuffers(g_buffers);
auto ptr_center = (float *) position_.request().ptr;
Vec3 center = Vec3(ptr_center[0], ptr_center[1], ptr_center[2]);
auto ptr_quat = (float *) quat_.request().ptr;
Quat quat = Quat(ptr_quat[0], ptr_quat[1], ptr_quat[2], ptr_quat[3]);
AddSphere(radius, center, quat);
pyflex_UnmapShapeBuffers(g_buffers);
}
int pyflex_get_n_particles() {
g_buffers->positions.map();
int n_particles = g_buffers->positions.size();
g_buffers->positions.unmap();
return n_particles;
}
int pyflex_get_n_shapes() {
g_buffers->shapePositions.map();
int n_shapes = g_buffers->shapePositions.size();
g_buffers->shapePositions.unmap();
return n_shapes;
}
py::array_t<int> pyflex_get_groups() {
g_buffers->phases.map();
auto groups = py::array_t<int>((size_t) g_buffers->phases.size());
auto ptr = (int *) groups.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->phases.size(); i++) {
ptr[i] = g_buffers->phases[i] & 0xfffff; // Flex 1.1 manual actually says 24 bits while it is actually 20 bits
}
g_buffers->phases.unmap();
return groups;
}
void pyflex_set_groups(py::array_t<int> groups) {
// if (not set_color)
// cout<<"Warning: Overloading GroupMask for colors. Make sure the eFlexPhaseSelfCollide is set!"<<endl;
g_buffers->phases.map();
auto buf = groups.request();
auto ptr = (int *) buf.ptr;
for (size_t i = 0; i < (size_t) g_buffers->phases.size(); i++) {
g_buffers->phases[i] = (g_buffers->phases[i] & ~0xfffff) | (ptr[i] & 0xfffff);
}
g_buffers->phases.unmap();
NvFlexSetPhases(g_solver, g_buffers->phases.buffer, nullptr);
}
py::array_t<int> pyflex_get_phases() {
g_buffers->phases.map();
auto phases = py::array_t<int>((size_t) g_buffers->phases.size());
auto ptr = (int *) phases.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->phases.size(); i++) {
ptr[i] = g_buffers->phases[i];
}
g_buffers->phases.unmap();
return phases;
}
void pyflex_set_phases(py::array_t<int> phases) {
// if (not set_color)
// cout<<"Warning: Overloading GroupMask for colors. Make sure the eFlexPhaseSelfCollide is set!"<<endl;
g_buffers->phases.map();
auto buf = phases.request();
auto ptr = (int *) buf.ptr;
for (size_t i = 0; i < (size_t) g_buffers->phases.size(); i++) {
g_buffers->phases[i] = ptr[i];
}
g_buffers->phases.unmap();
NvFlexSetPhases(g_solver, g_buffers->phases.buffer, nullptr);
}
py::array_t<float> pyflex_get_positions() {
g_buffers->positions.map();
auto positions = py::array_t<float>((size_t) g_buffers->positions.size() * 4);
auto ptr = (float *) positions.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->positions.size(); i++) {
ptr[i * 4] = g_buffers->positions[i].x;
ptr[i * 4 + 1] = g_buffers->positions[i].y;
ptr[i * 4 + 2] = g_buffers->positions[i].z;
ptr[i * 4 + 3] = g_buffers->positions[i].w;
}
g_buffers->positions.unmap();
return positions;
}
void pyflex_set_positions(py::array_t<float> positions) {
g_buffers->positions.map();
auto buf = positions.request();
auto ptr = (float *) buf.ptr;
for (size_t i = 0; i < (size_t) g_buffers->positions.size(); i++) {
g_buffers->positions[i].x = ptr[i * 4];
g_buffers->positions[i].y = ptr[i * 4 + 1];
g_buffers->positions[i].z = ptr[i * 4 + 2];
g_buffers->positions[i].w = ptr[i * 4 + 3];
}
g_buffers->positions.unmap();
NvFlexSetParticles(g_solver, g_buffers->positions.buffer, nullptr);
}
void pyflex_add_rigid_body(py::array_t<float> positions, py::array_t<float> velocities, int num, py::array_t<float> lower) {
auto bufp = positions.request();
auto position_ptr = (float *) bufp.ptr;
auto bufv = velocities.request();
auto velocity_ptr = (float *) bufv.ptr;
auto bufl = lower.request();
auto lower_ptr = (float *) bufl.ptr;
MapBuffers(g_buffers);
// if (g_buffers->rigidIndices.empty())
// g_buffers->rigidOffsets.push_back(0);
int phase = NvFlexMakePhase(5, eNvFlexPhaseSelfCollide | eNvFlexPhaseFluid);
for (size_t i = 0; i < (size_t)num; i++) {
g_buffers->activeIndices.push_back(int(g_buffers->activeIndices.size()));
// g_buffers->rigidIndices.push_back(int(g_buffers->positions.size()));
Vec3 position = Vec3(lower_ptr[0], lower_ptr[1], lower_ptr[2]) + Vec3(position_ptr[i*4], position_ptr[i*4+1], position_ptr[i*4+2]);
g_buffers->positions.push_back(Vec4(position.x, position.y, position.z, position_ptr[i*4 + 3]));
Vec3 velocity = Vec3(velocity_ptr[i*3], velocity_ptr[i*3 + 1], velocity_ptr[i*3 + 2]);
g_buffers->velocities.push_back(velocity);
g_buffers->phases.push_back(phase);
}
// g_buffers->rigidCoefficients.push_back(1.0);
// g_buffers->rigidOffsets.push_back(int(g_buffers->rigidIndices.size()));
// g_buffers->activeIndices.resize(g_buffers->positions.size());
// for (int i = 0; i < g_buffers->activeIndices.size(); ++i)
// printf("active particle idx: %d %d \n", i, g_buffers->activeIndices[i]);
// builds rigids constraints
// if (g_buffers->rigidOffsets.size()) {
// assert(g_buffers->rigidOffsets.size() > 1);
// const int numRigids = g_buffers->rigidOffsets.size() - 1;
// // If the centers of mass for the rigids are not yet computed, this is done here
// // (If the CreateParticleShape method is used instead of the NvFlexExt methods, the centers of mass will be calculated here)
// if (g_buffers->rigidTranslations.size() == 0) {
// g_buffers->rigidTranslations.resize(g_buffers->rigidOffsets.size() - 1, Vec3());
// CalculateRigidCentersOfMass(&g_buffers->positions[0], g_buffers->positions.size(), &g_buffers->rigidOffsets[0], &g_buffers->rigidTranslations[0], &g_buffers->rigidIndices[0], numRigids);
// }
// // calculate local rest space positions
// g_buffers->rigidLocalPositions.resize(g_buffers->rigidOffsets.back());
// CalculateRigidLocalPositions(&g_buffers->positions[0], &g_buffers->rigidOffsets[0], &g_buffers->rigidTranslations[0], &g_buffers->rigidIndices[0], numRigids, &g_buffers->rigidLocalPositions[0]);
// // set rigidRotations to correct length, probably NULL up until here
// g_buffers->rigidRotations.resize(g_buffers->rigidOffsets.size() - 1, Quat());
// }
uint32_t numParticles = g_buffers->positions.size();
UnmapBuffers(g_buffers);
// reset pyflex solvers
// NvFlexSetParams(g_solver, &g_params);
// NvFlexSetParticles(g_solver, g_buffers->positions.buffer, nullptr);
// NvFlexSetVelocities(g_solver, g_buffers->velocities.buffer, nullptr);
// NvFlexSetPhases(g_solver, g_buffers->phases.buffer, nullptr);
// NvFlexSetNormals(g_solver, g_buffers->normals.buffer, nullptr);
// NvFlexSetRestParticles(g_solver, g_buffers->restPositions.buffer, nullptr);
NvFlexSetActive(g_solver, g_buffers->activeIndices.buffer, nullptr);
// printf("ok till here\n");
NvFlexSetActiveCount(g_solver, numParticles);
// NvFlexSetRigids(g_solver, g_buffers->rigidOffsets.buffer, g_buffers->rigidIndices.buffer,
// g_buffers->rigidLocalPositions.buffer, g_buffers->rigidLocalNormals.buffer,
// g_buffers->rigidCoefficients.buffer, g_buffers->rigidPlasticThresholds.buffer,
// g_buffers->rigidPlasticCreeps.buffer, g_buffers->rigidRotations.buffer,
// g_buffers->rigidTranslations.buffer, g_buffers->rigidOffsets.size() - 1, g_buffers->rigidIndices.size());
// printf("also ok here\n");
}
py::array_t<float> pyflex_get_restPositions() {
g_buffers->restPositions.map();
auto restPositions = py::array_t<float>((size_t) g_buffers->restPositions.size() * 4);
auto ptr = (float *) restPositions.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->restPositions.size(); i++) {
ptr[i * 4] = g_buffers->restPositions[i].x;
ptr[i * 4 + 1] = g_buffers->restPositions[i].y;
ptr[i * 4 + 2] = g_buffers->restPositions[i].z;
ptr[i * 4 + 3] = g_buffers->restPositions[i].w;
}
g_buffers->restPositions.unmap();
return restPositions;
}
py::array_t<int> pyflex_get_rigidOffsets() {
g_buffers->rigidOffsets.map();
auto rigidOffsets = py::array_t<int>((size_t) g_buffers->rigidOffsets.size());
auto ptr = (int *) rigidOffsets.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->rigidOffsets.size(); i++) {
ptr[i] = g_buffers->rigidOffsets[i];
}
g_buffers->rigidOffsets.unmap();
return rigidOffsets;
}
py::array_t<int> pyflex_get_rigidIndices() {
g_buffers->rigidIndices.map();
auto rigidIndices = py::array_t<int>((size_t) g_buffers->rigidIndices.size());
auto ptr = (int *) rigidIndices.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->rigidIndices.size(); i++) {
ptr[i] = g_buffers->rigidIndices[i];
}
g_buffers->rigidIndices.unmap();
return rigidIndices;
}
int pyflex_get_n_rigidPositions() {
g_buffers->rigidLocalPositions.map();
int n_rigidPositions = g_buffers->rigidLocalPositions.size();
g_buffers->rigidLocalPositions.unmap();
return n_rigidPositions;
}
py::array_t<float> pyflex_get_rigidLocalPositions() {
g_buffers->rigidLocalPositions.map();
auto rigidLocalPositions = py::array_t<float>((size_t) g_buffers->rigidLocalPositions.size() * 3);
auto ptr = (float *) rigidLocalPositions.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->rigidLocalPositions.size(); i++) {
ptr[i * 3] = g_buffers->rigidLocalPositions[i].x;
ptr[i * 3 + 1] = g_buffers->rigidLocalPositions[i].y;
ptr[i * 3 + 2] = g_buffers->rigidLocalPositions[i].z;
}
g_buffers->rigidLocalPositions.unmap();
return rigidLocalPositions;
}
py::array_t<float> pyflex_get_rigidGlobalPositions() {
g_buffers->rigidOffsets.map();
g_buffers->rigidIndices.map();
g_buffers->rigidLocalPositions.map();
g_buffers->rigidTranslations.map();
g_buffers->rigidRotations.map();
auto rigidGlobalPositions = py::array_t<float>((size_t) g_buffers->positions.size() * 3);
auto ptr = (float *) rigidGlobalPositions.request().ptr;
int count = 0;
int numRigids = g_buffers->rigidOffsets.size() - 1;
float n_clusters[g_buffers->positions.size()] = {0};
for (int i = 0; i < numRigids; i++) {
const int st = g_buffers->rigidOffsets[i];
const int ed = g_buffers->rigidOffsets[i + 1];
assert(ed - st);
for (int j = st; j < ed; j++) {
const int r = g_buffers->rigidIndices[j];
Vec3 p = Rotate(g_buffers->rigidRotations[i], g_buffers->rigidLocalPositions[count++]) +
g_buffers->rigidTranslations[i];
if (n_clusters[r] == 0) {
ptr[r * 3] = p.x;
ptr[r * 3 + 1] = p.y;
ptr[r * 3 + 2] = p.z;
} else {
ptr[r * 3] += p.x;
ptr[r * 3 + 1] += p.y;
ptr[r * 3 + 2] += p.z;
}
n_clusters[r] += 1;
}
}
for (int i = 0; i < g_buffers->positions.size(); i++) {
if (n_clusters[i] > 0) {
ptr[i * 3] /= n_clusters[i];
ptr[i * 3 + 1] /= n_clusters[i];
ptr[i * 3 + 2] /= n_clusters[i];
}
}
g_buffers->rigidOffsets.unmap();
g_buffers->rigidIndices.unmap();
g_buffers->rigidLocalPositions.unmap();
g_buffers->rigidTranslations.unmap();
g_buffers->rigidRotations.unmap();
return rigidGlobalPositions;
}
int pyflex_get_n_rigids() {
g_buffers->rigidRotations.map();
int n_rigids = g_buffers->rigidRotations.size();
g_buffers->rigidRotations.unmap();
return n_rigids;
}
py::array_t<float> pyflex_get_rigidRotations() {
g_buffers->rigidRotations.map();
auto rigidRotations = py::array_t<float>((size_t) g_buffers->rigidRotations.size() * 4);
auto ptr = (float *) rigidRotations.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->rigidRotations.size(); i++) {
ptr[i * 4] = g_buffers->rigidRotations[i].x;
ptr[i * 4 + 1] = g_buffers->rigidRotations[i].y;
ptr[i * 4 + 2] = g_buffers->rigidRotations[i].z;
ptr[i * 4 + 3] = g_buffers->rigidRotations[i].w;
}
g_buffers->rigidRotations.unmap();
return rigidRotations;
}
py::array_t<float> pyflex_get_rigidTranslations() {
g_buffers->rigidTranslations.map();
auto rigidTranslations = py::array_t<float>((size_t) g_buffers->rigidTranslations.size() * 3);
auto ptr = (float *) rigidTranslations.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->rigidTranslations.size(); i++) {
ptr[i * 3] = g_buffers->rigidTranslations[i].x;
ptr[i * 3 + 1] = g_buffers->rigidTranslations[i].y;
ptr[i * 3 + 2] = g_buffers->rigidTranslations[i].z;
}
g_buffers->rigidTranslations.unmap();
return rigidTranslations;
}
py::array_t<float> pyflex_get_velocities() {
g_buffers->velocities.map();
auto velocities = py::array_t<float>((size_t) g_buffers->velocities.size() * 3);
auto ptr = (float *) velocities.request().ptr;
for (size_t i = 0; i < (size_t) g_buffers->velocities.size(); i++) {
ptr[i * 3] = g_buffers->velocities[i].x;
ptr[i * 3 + 1] = g_buffers->velocities[i].y;
ptr[i * 3 + 2] = g_buffers->velocities[i].z;
}
g_buffers->velocities.unmap();
return velocities;
}
void pyflex_set_velocities(py::array_t<float> velocities) {
g_buffers->velocities.map();
auto buf = velocities.request();
auto ptr = (float *) buf.ptr;
for (size_t i = 0; i < (size_t) g_buffers->velocities.size(); i++) {
g_buffers->velocities[i].x = ptr[i * 3];
g_buffers->velocities[i].y = ptr[i * 3 + 1];
g_buffers->velocities[i].z = ptr[i * 3 + 2];
}
g_buffers->velocities.unmap();
}
py::array_t<float> pyflex_get_shape_states() {
pyflex_MapShapeBuffers(g_buffers);
// position + prev_position + rotation + prev_rotation
auto states = py::array_t<float>((size_t) g_buffers->shapePositions.size() * (3 + 3 + 4 + 4));
auto buf = states.request();
auto ptr = (float *) buf.ptr;
for (size_t i = 0; i < (size_t) g_buffers->shapePositions.size(); i++) {
ptr[i * 14] = g_buffers->shapePositions[i].x;
ptr[i * 14 + 1] = g_buffers->shapePositions[i].y;
ptr[i * 14 + 2] = g_buffers->shapePositions[i].z;
ptr[i * 14 + 3] = g_buffers->shapePrevPositions[i].x;
ptr[i * 14 + 4] = g_buffers->shapePrevPositions[i].y;
ptr[i * 14 + 5] = g_buffers->shapePrevPositions[i].z;
ptr[i * 14 + 6] = g_buffers->shapeRotations[i].x;
ptr[i * 14 + 7] = g_buffers->shapeRotations[i].y;
ptr[i * 14 + 8] = g_buffers->shapeRotations[i].z;
ptr[i * 14 + 9] = g_buffers->shapeRotations[i].w;
ptr[i * 14 + 10] = g_buffers->shapePrevRotations[i].x;
ptr[i * 14 + 11] = g_buffers->shapePrevRotations[i].y;
ptr[i * 14 + 12] = g_buffers->shapePrevRotations[i].z;
ptr[i * 14 + 13] = g_buffers->shapePrevRotations[i].w;
}
pyflex_UnmapShapeBuffers(g_buffers);
return states;
}
void pyflex_set_shape_color(py::array_t<float> color) {
auto buf = color.request();
auto ptr = (float *) buf.ptr;
for (int i=0; i<3; ++i) g_shape_color[i] = ptr[i];
}
void pyflex_set_shape_states(py::array_t<float> states) {
pyflex_MapShapeBuffers(g_buffers);
auto buf = states.request();
auto ptr = (float *) buf.ptr;
for (size_t i = 0; i < (size_t) g_buffers->shapePositions.size(); i++) {
g_buffers->shapePositions[i].x = ptr[i * 14];
g_buffers->shapePositions[i].y = ptr[i * 14 + 1];
g_buffers->shapePositions[i].z = ptr[i * 14 + 2];
g_buffers->shapePrevPositions[i].x = ptr[i * 14 + 3];
g_buffers->shapePrevPositions[i].y = ptr[i * 14 + 4];
g_buffers->shapePrevPositions[i].z = ptr[i * 14 + 5];
g_buffers->shapeRotations[i].x = ptr[i * 14 + 6];
g_buffers->shapeRotations[i].y = ptr[i * 14 + 7];
g_buffers->shapeRotations[i].z = ptr[i * 14 + 8];
g_buffers->shapeRotations[i].w = ptr[i * 14 + 9];
g_buffers->shapePrevRotations[i].x = ptr[i * 14 + 10];
g_buffers->shapePrevRotations[i].y = ptr[i * 14 + 11];
g_buffers->shapePrevRotations[i].z = ptr[i * 14 + 12];
g_buffers->shapePrevRotations[i].w = ptr[i * 14 + 13];
}
UpdateShapes();
pyflex_UnmapShapeBuffers(g_buffers);
}
py::array_t<float> pyflex_get_sceneUpper() {
auto scene_upper = py::array_t<float>(3);
auto buf = scene_upper.request();
auto ptr = (float *) buf.ptr;
ptr[0] = g_sceneUpper.x;
ptr[1] = g_sceneUpper.y;
ptr[2] = g_sceneUpper.z;
return scene_upper;
}
py::array_t<float> pyflex_get_sceneLower() {
auto scene_lower = py::array_t<float>(3);
auto buf = scene_lower.request();
auto ptr = (float *) buf.ptr;
ptr[0] = g_sceneLower.x;
ptr[1] = g_sceneLower.y;
ptr[2] = g_sceneLower.z;
return scene_lower;
}
py::array_t<int> pyflex_get_camera_params() {
// Right now only returns width and height for the default screen camera
// yf: add the camera position and camera angle
auto default_camera_param = py::array_t<float>(8);
auto default_camera_param_ptr = (float *) default_camera_param.request().ptr;
default_camera_param_ptr[0] = g_screenWidth;
default_camera_param_ptr[1] = g_screenHeight;
default_camera_param_ptr[2] = g_camPos.x;
default_camera_param_ptr[3] = g_camPos.y;
default_camera_param_ptr[4] = g_camPos.z;
default_camera_param_ptr[5] = g_camAngle.x;
default_camera_param_ptr[6] = g_camAngle.y;
default_camera_param_ptr[7] = g_camAngle.z;
return default_camera_param;
}
void pyflex_set_camera_params(py::array_t<float> update_camera_param) {
auto camera_param_ptr = (float *) update_camera_param.request().ptr;
if (g_render){
g_camPos.x = camera_param_ptr[0];
g_camPos.y = camera_param_ptr[1];
g_camPos.z = camera_param_ptr[2];
g_camAngle.x = camera_param_ptr[3];
g_camAngle.y = camera_param_ptr[4];
g_camAngle.z = camera_param_ptr[5];
g_screenWidth = camera_param_ptr[6];
g_screenHeight = camera_param_ptr[7];}
}
std::tuple<py::array_t<unsigned char>, py::array_t<float>> pyflex_render(int capture, char *path) {
// TODO: Turn off the GUI menu for rendering
static double lastTime;
// real elapsed frame time
double frameBeginTime = GetSeconds();
g_realdt = float(frameBeginTime - lastTime);
lastTime = frameBeginTime;
if (capture == 1) {
g_capture = true;
g_ffmpeg = fopen(path, "wb");
}
//-------------------------------------------------------------------
// Scene Update
double waitBeginTime = GetSeconds();
MapBuffers(g_buffers);
double waitEndTime = GetSeconds();
// Getting timers causes CPU/GPU sync, so we do it after a map
float newSimLatency = NvFlexGetDeviceLatency(g_solver, &g_GpuTimers.computeBegin, &g_GpuTimers.computeEnd,
&g_GpuTimers.computeFreq);
float newGfxLatency = RendererGetDeviceTimestamps(&g_GpuTimers.renderBegin, &g_GpuTimers.renderEnd,
&g_GpuTimers.renderFreq);
(void) newGfxLatency;
UpdateCamera();
if (!g_pause || g_step) {
UpdateEmitters();
UpdateMouse();
UpdateWind();
// UpdateScene();
}
// printf("update scene over!\n");
//-------------------------------------------------------------------
// Render
double renderBeginTime = GetSeconds();
// printf("after get seconds!\n");
if (g_profile && (!g_pause || g_step)) {
if (g_benchmark) {
g_numDetailTimers = NvFlexGetDetailTimers(g_solver, &g_detailTimers);
} else {
// printf("memset before!\n");
memset(&g_timers, 0, sizeof(g_timers));
NvFlexGetTimers(g_solver, &g_timers);
}
}
// printf("StartFrame before!\n");
StartFrame(Vec4(g_clearColor, 1.0f));
// printf("Render scene before!\n");
// main scene render
RenderScene();
// printf("Render scene over!\n");
RenderDebug();
// printf("Render debug over!\n");
int newScene = DoUI();
EndFrame();
// If user has disabled async compute, ensure that no compute can overlap
// graphics by placing a sync between them
if (!g_useAsyncCompute)
NvFlexComputeWaitForGraphics(g_flexLib);
UnmapBuffers(g_buffers);
// move mouse particle (must be done here as GetViewRay() uses the GL projection state)
if (g_mouseParticle != -1) {
Vec3 origin, dir;
GetViewRay(g_lastx, g_screenHeight - g_lasty, origin, dir);
g_mousePos = origin + dir * g_mouseT;
}
if (!g_interop && g_render) {
// if not using interop then we read back fluid data to host
if (g_drawEllipsoids) {
NvFlexGetSmoothParticles(g_solver, g_buffers->smoothPositions.buffer, nullptr);
NvFlexGetAnisotropy(g_solver, g_buffers->anisotropy1.buffer, g_buffers->anisotropy2.buffer,
g_buffers->anisotropy3.buffer, NULL);
}
// read back diffuse data to host
if (g_drawDensity)
NvFlexGetDensities(g_solver, g_buffers->densities.buffer, nullptr);
if (GetNumDiffuseRenderParticles(g_diffuseRenderBuffers)) {
NvFlexGetDiffuseParticles(g_solver, g_buffers->diffusePositions.buffer, g_buffers->diffuseVelocities.buffer,
g_buffers->diffuseCount.buffer);
}
} else if (g_render) {
// read back just the new diffuse particle count, render buffers will be updated during rendering
NvFlexGetDiffuseParticles(g_solver, nullptr, nullptr, g_buffers->diffuseCount.buffer);
}
// Original function for rendering and saving to disk
if (g_capture) {
TgaImage img;
img.m_width = g_screenWidth;
img.m_height = g_screenHeight;
img.m_data = new uint32_t[g_screenWidth*g_screenHeight];
ReadFrame((int*)img.m_data, g_screenWidth, g_screenHeight);
TgaSave(g_ffmpeg, img, false);
// fwrite(img.m_data, sizeof(uint32_t)*g_screenWidth*g_screenHeight, 1, g_ffmpeg);
delete[] img.m_data;
}
// auto rendered_img = py::array_t<uint32_t>((uint32_t) g_screenWidth*g_screenHeight);
auto rendered_img = py::array_t<uint8_t>((int) g_screenWidth * g_screenHeight * 4);
auto rendered_img_ptr = (uint8_t *) rendered_img.request().ptr;
int rendered_img_int32_ptr[g_screenWidth * g_screenHeight];
ReadFrame(rendered_img_int32_ptr, g_screenWidth, g_screenHeight);
/*
* This depth rendering functionality in PyFLex was provided by
* Zhenjia Xu
* email: xuzhenjia [at] cs (dot) columbia (dot) edu
* website: https://www.zhenjiaxu.com/
*/
auto rendered_depth = py::array_t<float>((float)g_screenWidth * g_screenHeight);
auto rendered_depth_ptr = (float *)rendered_depth.request().ptr;
float rendered_depth_float_ptr[g_screenWidth * g_screenHeight];
glVerify(glReadBuffer(GL_BACK));
glReadPixels(0, 0, g_screenWidth, g_screenHeight, GL_DEPTH_COMPONENT, GL_FLOAT, rendered_depth_float_ptr);
for (int i = 0; i < g_screenWidth * g_screenHeight; ++i) {
int32_abgr_to_int8_rgba((uint32_t) rendered_img_int32_ptr[i],
rendered_img_ptr[4 * i],
rendered_img_ptr[4 * i + 1],
rendered_img_ptr[4 * i + 2],
rendered_img_ptr[4 * i + 3]);
rendered_depth_ptr[i] = 2 * g_camFar * g_camNear / (g_camFar + g_camNear - (2 * rendered_depth_float_ptr[i] - 1) * (g_camFar - g_camNear));
}
// Should be able to return the image here, instead of at the end
// delete[] img.m_data;
double renderEndTime = GetSeconds();
// if user requested a scene reset process it now
if (g_resetScene) {
// Reset();
g_resetScene = false;
}
//-------------------------------------------------------------------
// Flex Update
double updateBeginTime = GetSeconds();
// send any particle updates to the solver
NvFlexSetParticles(g_solver, g_buffers->positions.buffer, nullptr);
NvFlexSetVelocities(g_solver, g_buffers->velocities.buffer, nullptr);
NvFlexSetPhases(g_solver, g_buffers->phases.buffer, nullptr);
NvFlexSetActive(g_solver, g_buffers->activeIndices.buffer, nullptr);
NvFlexSetActiveCount(g_solver, g_buffers->activeIndices.size());
if (!g_pause || g_step) {
// tick solver
// NvFlexSetParams(g_solver, &g_params);
// NvFlexUpdateSolver(g_solver, g_dt, g_numSubsteps, g_profile);
g_frame++;
g_step = false;
}
// read back base particle data
// Note that flexGet calls don't wait for the GPU, they just queue a GPU copy
// to be executed later.
// When we're ready to read the fetched buffers we'll Map them, and that's when
// the CPU will wait for the GPU flex update and GPU copy to finish.
NvFlexGetParticles(g_solver, g_buffers->positions.buffer, nullptr);
NvFlexGetVelocities(g_solver, g_buffers->velocities.buffer, nullptr);
NvFlexGetNormals(g_solver, g_buffers->normals.buffer, nullptr);
// readback rigid transforms
// if (g_buffers->rigidOffsets.size())
// NvFlexGetRigids(g_solver, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, g_buffers->rigidRotations.buffer, g_buffers->rigidTranslations.buffer);
double updateEndTime = GetSeconds();
//-------------------------------------------------------
// Update the on-screen timers
auto newUpdateTime = float(updateEndTime - updateBeginTime);
auto newRenderTime = float(renderEndTime - renderBeginTime);
auto newWaitTime = float(waitBeginTime - waitEndTime);
// Exponential filter to make the display easier to read
const float timerSmoothing = 0.05f;
g_updateTime = (g_updateTime == 0.0f) ? newUpdateTime : Lerp(g_updateTime, newUpdateTime, timerSmoothing);
g_renderTime = (g_renderTime == 0.0f) ? newRenderTime : Lerp(g_renderTime, newRenderTime, timerSmoothing);
g_waitTime = (g_waitTime == 0.0f) ? newWaitTime : Lerp(g_waitTime, newWaitTime, timerSmoothing);
g_simLatency = (g_simLatency == 0.0f) ? newSimLatency : Lerp(g_simLatency, newSimLatency, timerSmoothing);
if (g_benchmark) newScene = BenchmarkUpdate();
// flush out the last frame before freeing up resources in the event of a scene change
// this is necessary for d3d12
PresentFrame(g_vsync);
// if gui or benchmark requested a scene change process it now
if (newScene != -1) {
g_scene = newScene;
// Init(g_scene);
}
SDL_EventFunc();
if (capture == 1) {
g_capture = false;
fclose(g_ffmpeg);
g_ffmpeg = nullptr;
}
return std::make_tuple(rendered_img, rendered_depth);
}
std::tuple<py::array_t<unsigned char>, py::array_t<float>> pyflex_render_cloth(int capture, char *path) {
int g_clothOnly_bak = g_clothOnly;
g_clothOnly = 1;
auto ret = pyflex_render(capture, path);
g_clothOnly = g_clothOnly_bak;
return ret;
}
PYBIND11_MODULE(pyflex, m) {
m.def("main", &main);
m.def("init", &pyflex_init);
m.def("set_scene", &pyflex_set_scene);
m.def("clean", &pyflex_clean);
m.def("step", &pyflex_step,
py::arg("update_params") = nullptr,
py::arg("capture") = 0,
py::arg("path") = nullptr,
py::arg("render") = 0);
m.def("render", &pyflex_render,
py::arg("capture") = 0,
py::arg("path") = nullptr
);
m.def("render_cloth", &pyflex_render_cloth,
py::arg("capture") = 0,
py::arg("path") = nullptr
);
m.def("get_camera_params", &pyflex_get_camera_params, "Get camera parameters");
m.def("set_camera_params", &pyflex_set_camera_params, "Set camera parameters");
m.def("add_box", &pyflex_add_box,
py::arg("halfEdge_") = 0,
py::arg("center_") = 0,
py::arg("quat_") = 0,
py::arg("trigger") = 0,
"Add box to the scene");
m.def("add_sphere", &pyflex_add_sphere, "Add sphere to the scene");
m.def("add_capsule", &pyflex_add_capsule, "Add capsule to the scene");
m.def("pop_box", &pyflex_pop_box, "remove box from the scene");
m.def("get_n_particles", &pyflex_get_n_particles, "Get the number of particles");
m.def("get_n_shapes", &pyflex_get_n_shapes, "Get the number of shapes");
m.def("get_n_rigids", &pyflex_get_n_rigids, "Get the number of rigids");
m.def("get_n_rigidPositions", &pyflex_get_n_rigidPositions, "Get the number of rigid positions");
m.def("get_phases", &pyflex_get_phases, "Get particle phases");
m.def("set_phases", &pyflex_set_phases, "Set particle phases");
m.def("get_groups", &pyflex_get_groups, "Get particle groups");
m.def("set_groups", &pyflex_set_groups, "Set particle groups");
// TODO: Add keyword set_color for set_phases function and also in python code
m.def("get_positions", &pyflex_get_positions, "Get particle positions");
m.def("set_positions", &pyflex_set_positions, "Set particle positions");
m.def("get_restPositions", &pyflex_get_restPositions, "Get particle restPositions");
m.def("get_rigidOffsets", &pyflex_get_rigidOffsets, "Get rigid offsets");
m.def("get_rigidIndices", &pyflex_get_rigidIndices, "Get rigid indices");
m.def("get_rigidLocalPositions", &pyflex_get_rigidLocalPositions, "Get rigid local positions");
m.def("get_rigidGlobalPositions", &pyflex_get_rigidGlobalPositions, "Get rigid global positions");
m.def("get_rigidRotations", &pyflex_get_rigidRotations, "Get rigid rotations");
m.def("get_rigidTranslations", &pyflex_get_rigidTranslations, "Get rigid translations");
// m.def("get_sceneParams", &pyflex_get_sceneParams, "Get scene parameters");
m.def("get_velocities", &pyflex_get_velocities, "Get particle velocities");
m.def("set_velocities", &pyflex_set_velocities, "Set particle velocities");
m.def("get_shape_states", &pyflex_get_shape_states, "Get shape states");
m.def("set_shape_states", &pyflex_set_shape_states, "Set shape states");
m.def("clear_shapes", &ClearShapes, "Clear shapes");
m.def("get_scene_upper", &pyflex_get_sceneUpper);
m.def("get_scene_lower", &pyflex_get_sceneLower);
m.def("add_rigid_body", &pyflex_add_rigid_body);
m.def("set_shape_color", &pyflex_set_shape_color, "Set the color of the shape");
}
|