Cambiamento dell'orientamento aereo

Contents
[ ]

Cambiamento dell’orientamento aereo

Aspose.3D for Node.js via Java consente di modificare l’orientamento di una scena. Per modificare l’orientamento, i metodi getUp() e setUp() vengono introdotti nella classe Plane. Il seguente frammento di codice mostra come modificare l’orientamento dell’aereo:

var aspose = aspose || {};

aspose.threed = require("aspose.threed");

// Initialize Scene
var scene = new aspose.threed.Scene();

// Initialize Plane
var plane=new aspose.threed.Plane();

// Set Vector
plane.setUp(new aspose.threed.Vector3(1, 1, 3));
scene.getRootNode().createChildNode(plane);

//This will generate a plane that has customized orientation
scene.save("ChangePlaneOrientation.obj");