3d Bin Packing Operational Application Wiki
Brought to you by:
pablortiz
Welcome to your wiki!
This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
The wiki uses Markdown syntax.
There are a small error in the file contenedor.php from line 4 to 10 you have to initialize the variables as follows:
$translateX_= isset($REQUEST["translateX"]) ? $_REQUEST["translateX"] : 0;
$translateY= isset($REQUEST["translateY"]) ? $_REQUEST["translateY"] : 0;
$translateZ= isset($REQUEST["translateZ"]) ? $_REQUEST["translateZ"] : 0;
$rotateX= isset($REQUEST["rotateX"]) ? $_REQUEST["rotateX"] : 0;
$rotateY= isset($REQUEST["rotateY"]) ? $_REQUEST["rotateY"] : 0;
$rotateZ= isset($_REQUEST["rotateZ"]) ? $_REQUEST["rotateZ"] : 0;
Best regards.