Changing Plane Orientation

Contents
[ ]

Changing Plane Orientation

Aspose.3D for Node.js via Java allows changing orientation of a scene. In order to change the orientation, getUp() and setUp() methods are introduced in Plane Class. Following code snippet shows how to change the plane’s orientation:

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");