tapspace
Version:
A zoomable user interface lib for web apps
14 lines (12 loc) • 330 B
JavaScript
const Orientation = require('../../geometry/Orientation')
module.exports = function () {
// @Component:getOrientation()
//
// Get the orientation of this component.
// Provides a way to match the orientation between components.
//
// Return
// an Orientation
//
return new Orientation(this, { a: 1, b: 0 })
}