Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
aframe-extrude-and-lathe
Advanced tools
Components for A-Frame. Based on aframe-component-boilerplate.
This module offers lathe and extrude components.
npm install
npm start
cd examples
npm install
npm run build
Visit http://127.0.0.1:5566/examples/basic/index.html
Install.
npm install aframe-extrude-and-lathe
Register.
var aframeCore = require('aframe-core');
var eAndL = require('aframe-extrude-and-lathe');
aframeCore.registerComponent('extrude', eAndL.extrudeComponent);
aframeCore.registerComponent('lathe', eAndL.latheComponent);
Use.
<a-scene>
<a-entity
extrude="path:'m0.1,0.1 l-0.2,0 l0,-0.2 l0.2,0 l0,0.2 z'; amount:0.05"
position="1 1 2"
material="color:blue"></a-entity>
<a-entity
lathe="path:'m0.1,-0.3 l0.3,0 l0,0.3 l-0.3,0 z'; angle:360; steps:32"
position="-1 1 2"
rotation="90 0 0"
material="color:green; side:double"></a-entity>
</a-scene>
Property | Description | Default Value |
---|---|---|
path | define profile shape via syntax akin to SVG path's d attribute | empty. must be defined |
amount | extension of extrusion | 1 |
Property | Description | Default Value |
---|---|---|
path | define profile shape via syntax akin to SVG path's d attribute | empty. must be defined |
startAngle | start angle for the revolution | 0 |
angle | revolution angle (0>angle>360) | 360 |
steps | number of steps along the angle | 16 |
FAQs
extrude and lathe components for aframevr
We found that aframe-extrude-and-lathe demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.