Blender渲染
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
331 B

  1. <?php
  2. namespace Blobt\Luxcore\core;
  3. use Blobt\Luxcore\core\LoardObj;
  4. include dirname(dirname(__FILE__)) . "/vendor/autoload.php";
  5. ini_set('memory_limit','4096M');
  6. $transform = new LoardObj('/home/yuanjiajia/Desktop/blender/test/沙发.obj');
  7. $transform->toGltf();
  8. $transform = $transform->toPly();
  9. var_dump( $transform );
  10. ?>