createPlaneOutlineGeometry.js 379 B

12345678910
  1. import defined from "../Core/defined.js";
  2. import PlaneOutlineGeometry from "../Core/PlaneOutlineGeometry.js";
  3. function createPlaneOutlineGeometry(planeGeometry, offset) {
  4. if (defined(offset)) {
  5. planeGeometry = PlaneOutlineGeometry.unpack(planeGeometry, offset);
  6. }
  7. return PlaneOutlineGeometry.createGeometry(planeGeometry);
  8. }
  9. export default createPlaneOutlineGeometry;